copyWith method
Implementation
TaPayInsertionModel copyWith({
String? responseCode,
String? message,
String? balance,
String? trxnID,
}) =>
TaPayInsertionModel(
responseCode: responseCode ?? _responseCode,
message: message ?? _message,
balance: balance ?? _balance,
trxnID: trxnID ?? _trxnID,
);