Image constructor
Image({})
Implementation
Image({
Header? header,
int? height,
int? width,
String? encoding,
int? is_bigendian,
int? step,
List<int>? data,
}):
this.header = header ?? Header(),
this.height = height ?? 0,
this.width = width ?? 0,
this.encoding = encoding ?? '',
this.is_bigendian = is_bigendian ?? 0,
this.step = step ?? 0,
this.data = data ?? [];