copyWith method

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

Implementation

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