Media constructor

Media(
  1. dynamic id,
  2. dynamic typeInt,
  3. dynamic width,
  4. dynamic height,
  5. Future<Uint8List?> thumbdata, {
  6. Crop? crop,
})

Implementation

Media(id, typeInt, width, height, this.thumbdata, {this.crop})
    : super(
        id: id,
        typeInt: typeInt,
        width: width,
        height: height,
      );