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