ContentBodyMediaToken constructor

ContentBodyMediaToken({
  1. List<String>? collectionIds,
  2. String? contentId,
  3. String? expiryDateTime,
  4. List<String>? fileIds,
  5. String? token,
})

Implementation

ContentBodyMediaToken(
    {List<String>? collectionIds,
    this.contentId,
    this.expiryDateTime,
    List<String>? fileIds,
    this.token})
    : collectionIds = collectionIds ?? [],
      fileIds = fileIds ?? [];