copyWith method
Implementation
StatisticsListResponse copyWith({ List<StatisticsItem>? data,
num? success,
String? message,
}) => StatisticsListResponse( data: data ?? _data,
success: success ?? _success,
message: message ?? _message,
);
StatisticsListResponse copyWith({ List<StatisticsItem>? data,
num? success,
String? message,
}) => StatisticsListResponse( data: data ?? _data,
success: success ?? _success,
message: message ?? _message,
);