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