RsaPublicKeyInfo.fromJson constructor

RsaPublicKeyInfo.fromJson(
  1. Map json_
)

Implementation

RsaPublicKeyInfo.fromJson(core.Map json_)
    : this(
        keySize: json_['keySize'] as core.int?,
      );