copyWith method

SharePointBodyModel copyWith({
  1. String? toMobileNo,
  2. String? bussinessId,
  3. String? keyword,
  4. num? transferAmount,
})

Implementation

SharePointBodyModel copyWith({  String? toMobileNo,
  String? bussinessId,
  String? keyword,
  num? transferAmount,
}) => SharePointBodyModel(  toMobileNo: toMobileNo ?? _toMobileNo,
  bussinessId: bussinessId ?? _bussinessId,
  keyword: keyword ?? _keyword,
  transferAmount: transferAmount ?? _transferAmount,
);