OudsBadge.standard constructor

const OudsBadge.standard({
  1. Key? key,
  2. OudsBadgeSize? size = OudsBadgeSize.medium,
  3. Widget? child,
  4. bool enabled = true,
  5. String? semanticsLabel,
  6. OudsIconStatus? status,
})

Implementation

const OudsBadge.standard({
  super.key,
  this.size = OudsBadgeSize.medium,
  this.child,
  this.enabled = true,
  this.semanticsLabel,
  this.status,
})  : label = null,
      icon = null,
      _deprecatedStatus = null,
      _withIcon = false;