SharePointBodyModel constructor

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

Implementation

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