GoogleCloudIdentitytoolkitV1MfaInfo.fromJson constructor

GoogleCloudIdentitytoolkitV1MfaInfo.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIdentitytoolkitV1MfaInfo.fromJson(core.Map json_)
    : this(
        enrollments: (json_['enrollments'] as core.List?)
            ?.map((value) =>
                GoogleCloudIdentitytoolkitV1MfaEnrollment.fromJson(
                    value as core.Map<core.String, core.dynamic>))
            .toList(),
      );