buildButton method

Widget buildButton(
  1. BuildContext context,
  2. FastPlanBlocState state
)

Builds the restore purchase button based on the emphasis style.

Implementation

Widget buildButton(BuildContext context, FastPlanBlocState state) {
  if (emphasis == FastButtonEmphasis.high) {
    return buildHighEmphasisButton(context, state);
  }

  return buildLowEmphasisButton(context, state);
}