setGloballyUniqueIdentifier method

dynamic setGloballyUniqueIdentifier(
  1. String value
)

globally unique indentifier

length of value is 1 up to 32

Implementation

setGloballyUniqueIdentifier(String value) {
  if (value.length > 32) {
    throw MaxValueLengthErr(title: "GloballyUniqueIdentifier", length: "32");
  }
  final globallyUniqueIdentifier =
      setTLV(value, MerchantAccountInformationID.globallyUniqueIdentifier);
  this.value =
      this.value.copyWith(globallyUniqueIdentifier: globallyUniqueIdentifier);
}