Map_(Collection)_Dart
import 'dart:ffi' ; ///Introduction to the Dart Map type /// Map type allows you to manage a collection of key/value pairs. The Map type is /// similar to the Dictionary type in other programming languages. /// In a map, keys are unique. Each key has an associated value. Unlike keys, values can /// be duplicated. Generally, you cannot add or remove keys while performing an /// operation on the map ///CREATING A MAP void main () { var fruits = { "apple" : 1 , "banana" : 2 , "orange" : 3 , "pineapple" : 4 , "pomegranate" : 5 , "coconut" : 6 , "mango" : 7 , "grapes" : 8 , "papaya" : 9 , "watermelon" : 10 , "kiwi" : 11 , "Lemon" : 12 , "cherry" : 13 , "strawberry" : 14 , "blueberry" : 15 , "pear" : 16 } ; // print(fruits); // print("\n"); /...