copyWith method

Beneficiary copyWith({
  1. String? mobileNumber,
  2. String? tATrxnID,
  3. String? trxnAmount,
  4. String? status,
})

Implementation

Beneficiary copyWith({  String? mobileNumber,
  String? tATrxnID,
  String? trxnAmount,
  String? status,
}) => Beneficiary(  mobileNumber: mobileNumber ?? _mobileNumber,
  tATrxnID: tATrxnID ?? _tATrxnID,
  trxnAmount: trxnAmount ?? _trxnAmount,
  status: status ?? _status,
);