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