HostedFileContent constructor

HostedFileContent({
  1. required String fileId,
  2. String? mediaType,
  3. String? name,
  4. Object? rawRepresentation,
  5. AdditionalPropertiesDictionary? additionalProperties,
})

Creates a new HostedFileContent.

Implementation

HostedFileContent({
  required this.fileId,
  this.mediaType,
  this.name,
  super.rawRepresentation,
  super.additionalProperties,
});