getProgressIndicatorValueColor method

  1. @override
Color? getProgressIndicatorValueColor()

getProgressIndicatorValueColor() a method where returns the progressIndicatorValueColor.

Implementation

@override
Color? getProgressIndicatorValueColor() {
  if (style!.buttonType == AuthButtonType.secondary) return Colors.teal;
  if (style!.buttonType != AuthButtonType.secondary) return Colors.teal[200];
}