CryptoKeyConfig.fromJson constructor

CryptoKeyConfig.fromJson(
  1. Map json_
)

Implementation

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