Files
shelf_plus/doc_files/request_body_deserialize2.dart
2021-10-09 19:36:11 +02:00

11 lines
224 B
Dart

class Person {
final String name;
Person({required this.name});
// created with tools like json_serializable package
static Person fromJson(Map<String, dynamic> json) {
return Person(name: json['name']);
}
}