copyWith method

MerchantAccountInformationValue copyWith({
  1. TLVModel? globallyUniqueIdentifier,
  2. List<TLVModel>? paymentNetworkSpecific,
})

Implementation

MerchantAccountInformationValue copyWith({
  TLVModel? globallyUniqueIdentifier,
  List<TLVModel>? paymentNetworkSpecific,
}) =>
    MerchantAccountInformationValue(
      globallyUniqueIdentifier:
          globallyUniqueIdentifier ?? this.globallyUniqueIdentifier,
      paymentNetworkSpecific:
          paymentNetworkSpecific ?? this.paymentNetworkSpecific,
    );