AssetTypeCreditAlphaNum12 constructor Null safety
Implementation
AssetTypeCreditAlphaNum12(String code, String issuerId)
: super(code, issuerId) {
if (code.length < 5 || code.length > 12) {
throw new AssetCodeLengthInvalidException();
}
}