buildLabel method

Widget buildLabel(
  1. BuildContext context,
  2. FormBlocState<TSuccess, TFailure> state
)

Implementation

Widget buildLabel(BuildContext context, FormBlocState<TSuccess, TFailure> state) {
  return labelBuilder?.call(context, state) ?? label ?? const SizedBox();
}