copyWith method
Implementation
AttachmentUpdateMetadata copyWith({String? mediaType, String? comment}) {
return AttachmentUpdateMetadata(
mediaType: mediaType ?? this.mediaType,
comment: comment ?? this.comment,
);
}
AttachmentUpdateMetadata copyWith({String? mediaType, String? comment}) {
return AttachmentUpdateMetadata(
mediaType: mediaType ?? this.mediaType,
comment: comment ?? this.comment,
);
}