GoogleFirebaseAppcheckV1betaBatchGetSafetyNetConfigsResponse.fromJson constructor

GoogleFirebaseAppcheckV1betaBatchGetSafetyNetConfigsResponse.fromJson(
  1. Map _json
)

Implementation

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