CropRatio constructor

CropRatio(
  1. double width,
  2. double height, {
  3. String? name,
  4. bool? toggleable,
})

Creates a new CropRatio.

Implementation

CropRatio(
  this.width,
  this.height, {
  this.name,
  this.toggleable,
});