BitmapCrop.fromLTRB constructor

BitmapCrop.fromLTRB({
  1. required int left,
  2. required int top,
  3. required int right,
  4. required int bottom,
})

Implementation

BitmapCrop.fromLTRB({
  required this.left,
  required this.top,
  required int right,
  required int bottom,
})  : width = right - left,
      height = bottom - top;