copyWith method
Implementation
ReportsResponseBean copyWith({List<Map<String, dynamic>>? reports}) {
return ReportsResponseBean(
reports: reports ?? this.reports,
);
}
ReportsResponseBean copyWith({List<Map<String, dynamic>>? reports}) {
return ReportsResponseBean(
reports: reports ?? this.reports,
);
}