QuorumAuth.fromJson constructor
QuorumAuth.fromJson(
- Map json_
Implementation
QuorumAuth.fromJson(core.Map json_)
: this(
requiredApproverCount: json_['requiredApproverCount'] as core.int?,
totalApproverCount: json_['totalApproverCount'] as core.int?,
twoFactorPublicKeyPems: (json_['twoFactorPublicKeyPems'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);