DriveFile.fromJson constructor
      
      DriveFile.fromJson(
    
    
- Map json_
Implementation
DriveFile.fromJson(core.Map json_)
  : this(
      alternateLink: json_['alternateLink'] as core.String?,
      id: json_['id'] as core.String?,
      thumbnailUrl: json_['thumbnailUrl'] as core.String?,
      title: json_['title'] as core.String?,
    );