merchantData property

String? merchantData

Implementation

String? get merchantData {
  return _merchantData;
}
void merchantData=(String? value)

Implementation

set merchantData(String? value) {
  if (value != null && value.length > 2048) {
    throw new ArgumentError(
        "MerchantData should be not more than 2048 symbols");
  }
  _merchantData = value;
}