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