UIButtonLabel function

Widget UIButtonLabel(
  1. UIButtonDefaults? as,
  2. String? label,
  3. Color? labelColor
)

Button Label

Implementation

// ignore: non_constant_identifier_names
Widget UIButtonLabel(UIButtonDefaults? as, String? label, Color? labelColor) {
  return UIHeading(
    text: label,
    color: UIUtils.getColor(as, as?.labelColor, labelColor, Colors.blue),
    heading: 6,
  );
}