copyWith method

ImageOutput copyWith({
  1. String? fileId,
})

Creates a copy with the given fields replaced.

Implementation

ImageOutput copyWith({String? fileId}) {
  return ImageOutput(fileId: fileId ?? this.fileId);
}