SharedDriveFile.fromJson constructor

SharedDriveFile.fromJson(
  1. Map json_
)

Implementation

SharedDriveFile.fromJson(core.Map json_)
  : this(
      driveFile: json_.containsKey('driveFile')
          ? DriveFile.fromJson(
              json_['driveFile'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      shareMode: json_['shareMode'] as core.String?,
    );