Answers for "How to create maps by mentioning generic in flutter"

0

How to create maps by mentioning generic in flutter

void main() {
    var words = <int, String>{
       1: "sky",
       2: "falcon",
       3: "rock",
  };
  print(words);
}
Posted by: Guest on October-19-2021

Code answers related to "How to create maps by mentioning generic in flutter"

Browse Popular Code Answers by Language