AddressStringFormat_Base64 constructor
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');
}