FLDySizedBoxUnitModel constructor

FLDySizedBoxUnitModel({
  1. String? unitName,
  2. double? width,
  3. double? height,
})

Implementation

FLDySizedBoxUnitModel({
  String? unitName,
  this.width,
  this.height,
}) : super(unitName: unitName);