ExportLeadResponseModel constructor

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

Implementation

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