copyWith method

ReportsResponseBean copyWith({
  1. List<Map<String, dynamic>>? reports,
})

Implementation

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