SharedDriveInfo.fromJson constructor
SharedDriveInfo.fromJson(
- Map json_
Implementation
SharedDriveInfo.fromJson(core.Map json_)
: this(
sharedDriveIds: json_.containsKey('sharedDriveIds')
? (json_['sharedDriveIds'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);