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