ListDbSystemShapesResponse.fromJson constructor
ListDbSystemShapesResponse.fromJson(
- Map json_
Implementation
ListDbSystemShapesResponse.fromJson(core.Map json_)
: this(
dbSystemShapes:
(json_['dbSystemShapes'] as core.List?)
?.map(
(value) => DbSystemShape.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);