copyWith method

QuarterListResponse copyWith({
  1. List<DataQuaterDropDown>? data,
  2. num? success,
  3. String? message,
})

Implementation

QuarterListResponse copyWith({  List<DataQuaterDropDown>? data,
  num? success,
  String? message,
}) => QuarterListResponse(  data: data ?? _data,
  success: success ?? _success,
  message: message ?? _message,
);