InputFeedbackText.check constructor
InputFeedbackText.check({})
Implementation
factory InputFeedbackText.check({
required Key key,
required bool active,
required Widget text,
Color? color,
}) =>
InputFeedbackText(
key: key,
type: InputFeedbackType.icon,
icon: Icon(
Icons.check,
),
text: text,
active: active,
color: color,
);