GoogleCloudIdentitytoolkitV1MfaInfo.fromJson constructor

GoogleCloudIdentitytoolkitV1MfaInfo.fromJson(
  1. Map _json
)

Implementation

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