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 json) => _$HistoryResponseFromJson(json); // JSON Export Map toJson() => _$HistoryResponseToJson(this); }