BatchCreateRegionsResponse.fromJson constructor

BatchCreateRegionsResponse.fromJson(
  1. Map json_
)

Implementation

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