{"id":43479,"date":"2024-11-28T12:31:34","date_gmt":"2024-11-28T12:31:34","guid":{"rendered":"https:\/\/atmokpo.com\/w\/?p=43479"},"modified":"2024-11-28T12:31:34","modified_gmt":"2024-11-28T12:31:34","slug":"dart-%ec%96%b8%ec%96%b4%ea%b0%95%ec%a2%8c-006-%ea%b8%b0%eb%b3%b8-%eb%ac%b8%eb%b2%95-%eb%b0%b0%ec%9a%b0%ea%b8%b0-%ec%a1%b0%ea%b1%b4%eb%ac%b8%ea%b3%bc-%eb%b0%98%eb%b3%b5%eb%ac%b8","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/43479\/","title":{"rendered":"[Dart \uc5b8\uc5b4\uac15\uc88c]  006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38"},"content":{"rendered":"<p><body><\/p>\n<h2>1. Dart\uc758 \uae30\ubcf8 \ubb38\ubc95<\/h2>\n<p>Dart\ub294 Google\uc5d0\uc11c \uac1c\ubc1c\ud55c \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc8fc\ub85c \uc6f9 \ubc0f \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. Dart\uc758 \uae30\ubcf8 \ubb38\ubc95\uc744 \uc774\ud574\ud558\ub294 \uac83\uc740 \ud6a8\uacfc\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d\uc744 \uc704\ud574 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uae30\ubcf8 \ubb38\ubc95\uc5d0\ub294 \ubcc0\uc218 \uc120\uc5b8, \ub370\uc774\ud130 \ud0c0\uc785, \ud568\uc218 \uc815\uc758, \uc8fc\uc11d \ub4f1\uc774 \ud3ec\ud568\ub429\ub2c8\ub2e4.<\/p>\n<h3>1.1 \ubcc0\uc218\uc640 \ub370\uc774\ud130 \ud0c0\uc785<\/h3>\n<p>Dart\uc5d0\uc11c\ub294 \ubcc0\uc218\ub97c \uc120\uc5b8\ud560 \ub54c <code>var<\/code>, <code>final<\/code>, <code>const<\/code> \ud0a4\uc6cc\ub4dc\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4. \ub370\uc774\ud130 \ud0c0\uc785\uc740 \uae30\ubcf8\uc801\uc73c\ub85c \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n<ul>\n<li><code>int<\/code>: \uc815\uc218 \ud0c0\uc785<\/li>\n<li><code>double<\/code>: \uc2e4\uc218 \ud0c0\uc785<\/li>\n<li><code>String<\/code>: \ubb38\uc790\uc5f4 \ud0c0\uc785<\/li>\n<li><code>bool<\/code>: \ubd88\ub9ac\uc5b8 \ud0c0\uc785<\/li>\n<li><code>List<\/code>: \ubc30\uc5f4 \ud0c0\uc785<\/li>\n<li><code>Map<\/code>: \ud0a4-\uac12 \uc30d<\/li>\n<\/ul>\n<h3>1.2 \ubcc0\uc218 \uc120\uc5b8 \uc608\uc81c<\/h3>\n<pre><code>void main() {\n        var name = 'Dart';\n        final pi = 3.14;\n        const gravity = 9.81;\n\n        print('\uc774\ub984: $name');\n        print('\u03c0: $pi');\n        print('\uc911\ub825: $gravity');\n    }<\/code><\/pre>\n<h2>2. \uc870\uac74\ubb38(Conditional Statements)<\/h2>\n<p>\uc870\uac74\ubb38\uc740 \uc8fc\uc5b4\uc9c4 \uc870\uac74\uc5d0 \ub530\ub77c\uc11c \ud504\ub85c\uadf8\ub7a8\uc758 \ud750\ub984\uc744 \uc81c\uc5b4\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. Dart\uc5d0\uc11c\ub294 \uc8fc\ub85c <code>if<\/code>, <code>else if<\/code>, <code>else<\/code>, <code>switch<\/code> \ubb38\uc744 \uc0ac\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n<h3>2.1 if \ubb38<\/h3>\n<p><code>if<\/code> \ubb38\uc740 \uc870\uac74\uc774 \ucc38\uc77c \ub54c\ub9cc \uc2e4\ud589\ub418\ub294 \ube14\ub85d\uc744 \uc815\uc758\ud569\ub2c8\ub2e4. \uc0ac\uc6a9 \uc608\uc81c\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code>void main() {\n        int score = 85;\n        \n        if (score &gt;= 90) {\n            print('A');\n        } else if (score &gt;= 80) {\n            print('B');\n        } else {\n            print('C');\n        }\n    }<\/code><\/pre>\n<h3>2.2 switch \ubb38<\/h3>\n<p><code>switch<\/code> \ubb38\uc740 \uc5ec\ub7ec \uac00\uc9c0 \uc870\uac74\uc744 \ube44\uad50\ud558\uc5ec \uc2e4\ud589\ud560 \ube14\ub85d\uc744 \uc120\ud0dd\ud569\ub2c8\ub2e4. \ub2e4\uc74c\uc740 \uc608\uc81c\uc785\ub2c8\ub2e4:<\/p>\n<pre><code>void main() {\n        String grade = 'B';\n        \n        switch (grade) {\n            case 'A':\n                print('\uc6b0\uc218');\n                break;\n            case 'B':\n                print('\uc591\ud638');\n                break;\n            case 'C':\n                print('\ubcf4\ud1b5');\n                break;\n            default:\n                print('\uc81c\ucd9c\ub418\uc9c0 \uc54a\uc74c');\n        }\n    }<\/code><\/pre>\n<h2>3. \ubc18\ubcf5\ubb38(Loops)<\/h2>\n<p>\ubc18\ubcf5\ubb38\uc740 \ud2b9\uc815 \ube14\ub85d\uc758 \ucf54\ub4dc\ub97c \uc5ec\ub7ec \ubc88 \uc2e4\ud589\ud560 \ub54c \uc0ac\uc6a9\ub429\ub2c8\ub2e4. Dart\uc5d0\uc11c\ub294 <code>for<\/code>, <code>while<\/code>, <code>do while<\/code> \ubc18\ubcf5\ubb38\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/p>\n<h3>3.1 for \ubb38<\/h3>\n<p><code>for<\/code> \ubb38\uc740 \ucd08\uae30\ud654, \uc870\uac74 \ud655\uc778, \ubc18\ubcf5 \ud6c4 \uc2e4\ud589\ucc98\ub7fc \uc138 \uac00\uc9c0 \ub2e8\uacc4\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \uc608\uc81c\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code>void main() {\n        for (int i = 1; i &lt;= 5; i++) {\n            print('\uc22b\uc790: $i');\n        }\n    }<\/code><\/pre>\n<h3>3.2 while \ubb38<\/h3>\n<p><code>while<\/code> \ubb38\uc740 \uc870\uac74\uc774 \ucc38\uc778 \ub3d9\uc548 \ucf54\ub4dc\ub97c \ubc18\ubcf5 \uc2e4\ud589\ud569\ub2c8\ub2e4. \ub2e4\uc74c \uc608\uc81c\ub97c \ud655\uc778\ud558\uc138\uc694:<\/p>\n<pre><code>void main() {\n        int i = 1;\n        while (i &lt;= 5) {\n            print('\uc22b\uc790: $i');\n            i++;\n        }\n    }<\/code><\/pre>\n<h3>3.3 do while \ubb38<\/h3>\n<p><code>do while<\/code> \ubb38\uc740 \ucd5c\uc18c\ud55c \ud55c \ubc88\uc740 \uc2e4\ud589\ub418\uace0, \uc870\uac74\uc774 \ucc38\uc778 \uacbd\uc6b0 \ubc18\ubcf5\ud569\ub2c8\ub2e4. \uc608\uc81c\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code>void main() {\n        int i = 1;\n        do {\n            print('\uc22b\uc790: $i');\n            i++;\n        } while (i &lt;= 5);\n    }<\/code><\/pre>\n<h2>4. \uacb0\ub860<\/h2>\n<p>Dart\uc758 \uae30\ubcf8 \ubb38\ubc95\uacfc \uc870\uac74\ubb38, \ubc18\ubcf5\ubb38\uc740 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uae30\ucd08\ub97c \ud615\uc131\ud569\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc694\uc18c\ub4e4\uc744 \uc774\ud574\ud558\uace0 \ud65c\uc6a9\ud558\ub294 \uac83\uc740 \ub354\uc6b1 \ubcf5\uc7a1\ud55c \ub85c\uc9c1\uc744 \uad6c\ud604\ud558\ub294 \ub370 \uc911\uc694\ud55c \uccab\uac78\uc74c\uc774 \ub429\ub2c8\ub2e4. \uc55e\uc73c\ub85c \ub354 \ub9ce\uc740 \uc608\uc81c\ub97c \ud1b5\ud574 Dart\uc758 \uae30\ub2a5\uc744 \uc2ec\ud654\ud574 \ub098\uac00\uae38 \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Dart\uc758 \uae30\ubcf8 \ubb38\ubc95 Dart\ub294 Google\uc5d0\uc11c \uac1c\ubc1c\ud55c \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc8fc\ub85c \uc6f9 \ubc0f \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. Dart\uc758 \uae30\ubcf8 \ubb38\ubc95\uc744 \uc774\ud574\ud558\ub294 \uac83\uc740 \ud6a8\uacfc\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d\uc744 \uc704\ud574 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uae30\ubcf8 \ubb38\ubc95\uc5d0\ub294 \ubcc0\uc218 \uc120\uc5b8, \ub370\uc774\ud130 \ud0c0\uc785, \ud568\uc218 \uc815\uc758, \uc8fc\uc11d \ub4f1\uc774 \ud3ec\ud568\ub429\ub2c8\ub2e4. 1.1 \ubcc0\uc218\uc640 \ub370\uc774\ud130 \ud0c0\uc785 Dart\uc5d0\uc11c\ub294 \ubcc0\uc218\ub97c \uc120\uc5b8\ud560 \ub54c var, final, const \ud0a4\uc6cc\ub4dc\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4. \ub370\uc774\ud130 \ud0c0\uc785\uc740 \uae30\ubcf8\uc801\uc73c\ub85c \ub2e4\uc74c\uacfc &hellip; <a href=\"https:\/\/atmokpo.com\/w\/43479\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;[Dart \uc5b8\uc5b4\uac15\uc88c]  006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[17],"tags":[],"class_list":["post-43479","post","type-post","status-publish","format-standard","hentry","category-17"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/43479\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. Dart\uc758 \uae30\ubcf8 \ubb38\ubc95 Dart\ub294 Google\uc5d0\uc11c \uac1c\ubc1c\ud55c \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc8fc\ub85c \uc6f9 \ubc0f \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. Dart\uc758 \uae30\ubcf8 \ubb38\ubc95\uc744 \uc774\ud574\ud558\ub294 \uac83\uc740 \ud6a8\uacfc\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d\uc744 \uc704\ud574 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uae30\ubcf8 \ubb38\ubc95\uc5d0\ub294 \ubcc0\uc218 \uc120\uc5b8, \ub370\uc774\ud130 \ud0c0\uc785, \ud568\uc218 \uc815\uc758, \uc8fc\uc11d \ub4f1\uc774 \ud3ec\ud568\ub429\ub2c8\ub2e4. 1.1 \ubcc0\uc218\uc640 \ub370\uc774\ud130 \ud0c0\uc785 Dart\uc5d0\uc11c\ub294 \ubcc0\uc218\ub97c \uc120\uc5b8\ud560 \ub54c var, final, const \ud0a4\uc6cc\ub4dc\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4. \ub370\uc774\ud130 \ud0c0\uc785\uc740 \uae30\ubcf8\uc801\uc73c\ub85c \ub2e4\uc74c\uacfc &hellip; \ub354 \ubcf4\uae30 &quot;[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/43479\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-28T12:31:34+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/43479\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/43479\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38\",\"datePublished\":\"2024-11-28T12:31:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/43479\/\"},\"wordCount\":20,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"\ud50c\ub7ec\ud130 \uac15\uc88c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/43479\/\",\"url\":\"https:\/\/atmokpo.com\/w\/43479\/\",\"name\":\"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-28T12:31:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/43479\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/43479\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/43479\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/43479\/","og_locale":"ko_KR","og_type":"article","og_title":"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. Dart\uc758 \uae30\ubcf8 \ubb38\ubc95 Dart\ub294 Google\uc5d0\uc11c \uac1c\ubc1c\ud55c \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4\ub85c, \uc8fc\ub85c \uc6f9 \ubc0f \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. Dart\uc758 \uae30\ubcf8 \ubb38\ubc95\uc744 \uc774\ud574\ud558\ub294 \uac83\uc740 \ud6a8\uacfc\uc801\uc778 \ud504\ub85c\uadf8\ub798\ubc0d\uc744 \uc704\ud574 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uae30\ubcf8 \ubb38\ubc95\uc5d0\ub294 \ubcc0\uc218 \uc120\uc5b8, \ub370\uc774\ud130 \ud0c0\uc785, \ud568\uc218 \uc815\uc758, \uc8fc\uc11d \ub4f1\uc774 \ud3ec\ud568\ub429\ub2c8\ub2e4. 1.1 \ubcc0\uc218\uc640 \ub370\uc774\ud130 \ud0c0\uc785 Dart\uc5d0\uc11c\ub294 \ubcc0\uc218\ub97c \uc120\uc5b8\ud560 \ub54c var, final, const \ud0a4\uc6cc\ub4dc\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4. \ub370\uc774\ud130 \ud0c0\uc785\uc740 \uae30\ubcf8\uc801\uc73c\ub85c \ub2e4\uc74c\uacfc &hellip; \ub354 \ubcf4\uae30 \"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38\"","og_url":"https:\/\/atmokpo.com\/w\/43479\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-28T12:31:34+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/43479\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/43479\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38","datePublished":"2024-11-28T12:31:34+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/43479\/"},"wordCount":20,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["\ud50c\ub7ec\ud130 \uac15\uc88c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/43479\/","url":"https:\/\/atmokpo.com\/w\/43479\/","name":"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-28T12:31:34+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/43479\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/43479\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/43479\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"[Dart \uc5b8\uc5b4\uac15\uc88c] 006. \uae30\ubcf8 \ubb38\ubc95 \ubc30\uc6b0\uae30, \uc870\uac74\ubb38\uacfc \ubc18\ubcf5\ubb38"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/43479","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=43479"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/43479\/revisions"}],"predecessor-version":[{"id":43480,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/43479\/revisions\/43480"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=43479"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=43479"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=43479"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}