EcKeyType.fromJson constructor

EcKeyType.fromJson(
  1. Map json_
)

Implementation

EcKeyType.fromJson(core.Map json_)
    : this(
        signatureAlgorithm: json_.containsKey('signatureAlgorithm')
            ? json_['signatureAlgorithm'] as core.String
            : null,
      );