AddressStringFormat_Base64 constructor

AddressStringFormat_Base64(
  1. {@required bool url,
  2. @required bool test,
  3. @required bool bounce}
)

Implementation

AddressStringFormat_Base64({
  @required bool url,
  @required bool test,
  @required bool bounce,
}) {
  _type = 'Base64';
  _url = ArgumentError.checkNotNull(url, 'AddressStringFormat_Base64 url');
  _test = ArgumentError.checkNotNull(test, 'AddressStringFormat_Base64 test');
  _bounce =
      ArgumentError.checkNotNull(bounce, 'AddressStringFormat_Base64 bounce');
}