buildLabel method

Widget buildLabel()

Implementation

Widget buildLabel() {
  if (labelText != null) {
    return Center(
      child: FastBody(
        text: labelText!,
        fontWeight: kFastFontWeightSemiBold,
        fontSize: kFastFontSize24,
      ),
    );
  }

  return const SizedBox.shrink();
}