ImageOptions constructor

ImageOptions({
  1. int? width,
  2. int? height,
})

Implementation

ImageOptions({this.width, this.height})
    : assert(width != null),
      assert(height != null);