GoogleFirebaseAppcheckV1BatchGetPlayIntegrityConfigsResponse.fromJson constructor

GoogleFirebaseAppcheckV1BatchGetPlayIntegrityConfigsResponse.fromJson(
  1. Map json_
)

Implementation

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