Skip to content

Instantly share code, notes, and snippets.

@tetujin
Created December 28, 2021 03:43
Show Gist options
  • Save tetujin/c754e6c736020a8437702daa4ad5e1b4 to your computer and use it in GitHub Desktop.
Save tetujin/c754e6c736020a8437702daa4ad5e1b4 to your computer and use it in GitHub Desktop.
import 'dart:convert';
void main() {
var mapObj = {"title":"TODO-1", "status":true};
print(mapObj);
var jsonStr = jsonEncode(mapObj);
print(jsonStr);
var mapObj2 = jsonDecode(jsonStr);
print(mapObj2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment