Skip to content

Instantly share code, notes, and snippets.

View zmunk's full-sized avatar
😃

Ibrahim Tigrek zmunk

😃
View GitHub Profile
@zmunk
zmunk / main.dart
Created January 26, 2020 16:41
Product to json string and back
import 'dart:convert';
void main() {
final p = Product(name: 'gofret', price: '\$1.00', imgUrl: 'img.com');
print(p);
print(p.runtimeType);
print("");
final j = json.encode(p);