EnumStatusBadge constructor

const EnumStatusBadge({
  1. Key? key,
  2. required EnumModel status,
  3. @Deprecated('Use backgroundColorKey via EnumModel.backgroundColor or theme tokens; this prop will be removed in a future release.') Color? backgroundColor,
})

Implementation

const EnumStatusBadge({
  super.key,
  required this.status,
  @Deprecated(
      'Use backgroundColorKey via EnumModel.backgroundColor or theme tokens; this prop will be removed in a future release.')
  this.backgroundColor,
});