MaterialIconLabel constructor
const
MaterialIconLabel({})
Implementation
const MaterialIconLabel({
super.key,
required this.label,
this.iconData,
this.iconAsset,
this.iconSize,
this.color,
this.minScreenWidthForTextBeforeScaling,
}) : assert(
label != null || iconData != null || iconAsset != null,
'At least one of iconData, iconAsset, or label must be specified.',
),
assert(
iconData == null || iconAsset == null,
'Only one of iconData and iconAsset may be specified.',
);