toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final commonAlphabet = this.commonAlphabet;
final context = this.context;
final cryptoKey = this.cryptoKey;
final customAlphabet = this.customAlphabet;
final radix = this.radix;
final surrogateInfoType = this.surrogateInfoType;
return {
'commonAlphabet': ?commonAlphabet,
'context': ?context,
'cryptoKey': ?cryptoKey,
'customAlphabet': ?customAlphabet,
'radix': ?radix,
'surrogateInfoType': ?surrogateInfoType,
};
}