toJsonList static method
Implementation
static List<Map<String, dynamic>>? toJsonList(
List<RecentForward>? recentForwards) {
if (recentForwards == null) return null;
return recentForwards.map((e) => e.toJson()).toList();
}
static List<Map<String, dynamic>>? toJsonList(
List<RecentForward>? recentForwards) {
if (recentForwards == null) return null;
return recentForwards.map((e) => e.toJson()).toList();
}