copyWith method
Implementation
AsyncContentBodyMediaToken copyWith(
{List<String>? collectionIds,
String? contentId,
String? expiryDateTime,
List<String>? fileIds,
String? token}) {
return AsyncContentBodyMediaToken(
collectionIds: collectionIds ?? this.collectionIds,
contentId: contentId ?? this.contentId,
expiryDateTime: expiryDateTime ?? this.expiryDateTime,
fileIds: fileIds ?? this.fileIds,
token: token ?? this.token,
);
}