copyWith method

ExportLeadResponseModel copyWith({
  1. String? filePath,
  2. num? success,
})

Implementation

ExportLeadResponseModel copyWith({  String? filePath,
  num? success,
}) => ExportLeadResponseModel(  filePath: filePath ?? _filePath,
  success: success ?? _success,
);