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