getProgressIndicatorValueColor method

  1. @override
Color? getProgressIndicatorValueColor()

getProgressIndicatorValueColor() a method where returns the progressIndicatorValueColor.

Implementation

@override
Color? getProgressIndicatorValueColor() {
  if (style!.buttonType == AuthButtonType.secondary)
    return AuthColors.facebook;
  if (style!.buttonType != AuthButtonType.secondary &&
      style!.iconType != AuthIconType.secondary) return Colors.white;
  return AuthColors.facebook;
}