copyWith method
Implementation
ImageData copyWith({
  ScreenSize? size,
  ImageFormat? format,
  ByteData? data
}) {
  return ImageData(
    size: size ?? this.size,
    format: format ?? this.format,
    data: data ?? this.data
  );
}ImageData copyWith({
  ScreenSize? size,
  ImageFormat? format,
  ByteData? data
}) {
  return ImageData(
    size: size ?? this.size,
    format: format ?? this.format,
    data: data ?? this.data
  );
}