RetrievePlannableLocationsResponse.fromJson constructor

RetrievePlannableLocationsResponse.fromJson(
  1. Map json_
)

Implementation

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