RegisterTwoFactorAuthKeys.fromJson constructor

RegisterTwoFactorAuthKeys.fromJson(
  1. 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(),
    );