Regions.fromJson constructor

Regions.fromJson(
  1. Map json_
)

Implementation

Regions.fromJson(core.Map json_)
    : this(
        regionCode: json_.containsKey('regionCode')
            ? (json_['regionCode'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );