setMerchantCity method

dynamic setMerchantCity(
  1. String value
)

Set merchant city

length of value is 1 up to 15.

Implementation

setMerchantCity(String value) {
  if (value.length > 15) {
    throw MaxValueLengthErr(title: "MerchantCity", length: "25");
  }
  final merchantCity = setTLV(value, MerchantInformationID.merchantCity);
  this.value = this.value.copyWith(merchantCity: merchantCity);
}