MControl constructor

const MControl({
  1. required String name,
  2. required MControlKind kind,
  3. required String label,
  4. String? sfSymbol,
  5. String? androidIcon,
  6. String? valueKey,
  7. required MAction action,
})

Implementation

const MControl({
  required this.name,
  required this.kind,
  required this.label,
  this.sfSymbol,
  this.androidIcon,
  this.valueKey,
  required this.action,
});