TeamDriveInfo.fromJson constructor

TeamDriveInfo.fromJson(
  1. Map json_
)

Implementation

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