ListSchemaRegistriesResponse.fromJson constructor

ListSchemaRegistriesResponse.fromJson(
  1. Map json_
)

Implementation

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