buildHighEmphasisButton method
Builds the button with high emphasis styling.
Implementation
Widget buildHighEmphasisButton(
BuildContext context,
FastPlanBlocState state,
) {
return FastPendingRaisedButton(
isEnabled: state.isInitialized && !state.isPlanPurchasePending,
onTap: () => handleOnTap(context),
isPending: state.isRestoringPlan,
labelText: _getLabelText(),
expand: expand,
);
}