import 'package:cw_zano/api/model/history.dart'; class RecentHistory { final List? history; final int lastItemIndex; final int totalHistoryItems; RecentHistory( {required this.history, required this.lastItemIndex, required this.totalHistoryItems}); factory RecentHistory.fromJson(Map json) => RecentHistory( history: json['history'] == null ? null : (json['history'] as List) .map((e) => History.fromJson(e as Map)) .toList(), lastItemIndex: json['last_item_index'] as int? ?? 0, totalHistoryItems: json['total_history_items'] as int? ?? 0, ); }