SharedDriveFile.fromJson constructor
      
      SharedDriveFile.fromJson(
    
    
- 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_.containsKey('shareMode')
            ? json_['shareMode'] as core.String
            : null,
      );