fbmobile/lib/core/models/rest/history_response.dart
2023-01-16 01:44:51 +01:00

24 lines
527 B
Dart

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});
// JSON Init
factory HistoryResponse.fromJson(Map<String, dynamic> json) =>
_$HistoryResponseFromJson(json);
// JSON Export
Map<String, dynamic> toJson() => _$HistoryResponseToJson(this);
}