FutureResourcesSpecLocationPolicy.fromJson constructor

FutureResourcesSpecLocationPolicy.fromJson(
  1. Map json_
)

Implementation

FutureResourcesSpecLocationPolicy.fromJson(core.Map json_)
  : this(
      locations: (json_['locations'] as core.Map<core.String, core.dynamic>?)
          ?.map(
            (key, value) => core.MapEntry(
              key,
              FutureResourcesSpecLocationPolicyLocation.fromJson(
                value as core.Map<core.String, core.dynamic>,
              ),
            ),
          ),
    );