mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
8 lines
173 B
Dart
8 lines
173 B
Dart
abstract class JsonSerializable<T> {
|
|
/// Convert [this] to json
|
|
Map<String, dynamic> toJson();
|
|
|
|
/// Create [this] from json
|
|
T fromJson(Map<String, dynamic> json);
|
|
}
|