SharedDriveInfo.fromJson constructor

SharedDriveInfo.fromJson(
  1. Map json_
)

Implementation

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