EditorIntWidget constructor

const EditorIntWidget({
  1. Key? key,
  2. required List<Inspectable> owners,
  3. required String propertyName,
  4. Object? customData,
  5. void onUpdateProperty(
    1. dynamic value
    )?,
})

Implementation

const EditorIntWidget({
  super.key,
  required this.owners,
  required this.propertyName,
  this.customData,
  this.onUpdateProperty,
});