buildButton method
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);
}