getProgressIndicatorValueColor method

  1. @override
Color? getProgressIndicatorValueColor()

Implementation

@override
Color? getProgressIndicatorValueColor() {
  if (style!.buttonType == AuthButtonType.secondary)
    return AuthColors.facebook;
  if (style!.buttonType != AuthButtonType.secondary)
    return const Color(0xff567de9);
}