fbmobile/lib/core/models/rest/history_response.dart

24 lines
527 B
Dart
Raw Normal View History

2021-02-02 14:33:23 +00:00
import 'package:json_annotation/json_annotation.dart';
import 'history.dart';
part 'history_response.g.dart';
@JsonSerializable()
class HistoryResponse {
@JsonKey(required: true)
final String status;
@JsonKey(required: true)
final History data;
HistoryResponse({required this.status, required this.data});
2021-02-02 14:33:23 +00:00
// JSON Init
2023-01-16 00:44:34 +00:00
factory HistoryResponse.fromJson(Map<String, dynamic> json) =>
_$HistoryResponseFromJson(json);
2021-02-02 14:33:23 +00:00
// JSON Export
Map<String, dynamic> toJson() => _$HistoryResponseToJson(this);
}