flutter-snippets icon indicating copy to clipboard operation
flutter-snippets copied to clipboard

Can you also add json snippets?

Open sujith-simon opened this issue 3 years ago • 0 comments
trafficstars

I really like this repo and wanted to see more snippets added. something like the below will help a lot.

class MyClass {
  .....
  ...

  Map<String,dynamic> toJson(){
  ....
  return map;
  }

  MyClass fromJson(Map<String,dynamic> map){
  ....
  return myClass;
  }
}

sujith-simon avatar Aug 03 '22 13:08 sujith-simon