Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 219 Bytes

3-5.Function.Typedef.md

File metadata and controls

14 lines (12 loc) · 219 Bytes

Dart

Typedef

typedef Str = List<String>;

List hello(Str name){
  return name;
}

void main() {
 hello(['a','b']);
}

이렇게 typedef를 이용해 타입을 다른 변수로 바꿔서 사용할 수 있다