다트 기초 - OOP(객체지향 프로그래밍)
List (대문자)List 변수명 = ['값1', '값2', '값3'];List name = ['짱구','철수','훈이','유리'];List numbers = [1,2,3,4,5];index0부터 시작class변수. name.length name.add('맹구');name.remove('철수');name.indexOf('짱구'); = 0Mapkey 와 value 둘 다 있어야함 Map 변수명 = {key:value , key2:value} Map isHarryPotter = { 'Harry' : true, 'Ron' : true, };Map에서 값 추가1. addAllisHarryPotter.addAll({ 'malfoy': true});2.[] 원하는 키의 값추가 or 변경 가능isHa..
2024. 12. 3.