RsaPublicKeyInfo.fromJson constructor
RsaPublicKeyInfo.fromJson(
- Map json_
Implementation
RsaPublicKeyInfo.fromJson(core.Map json_)
: this(
keySize: json_.containsKey('keySize')
? json_['keySize'] as core.int
: null,
);