getIcon method

  1. @override
AuthIcon getIcon()

getIcon() a method which returns the authIcon.

Implementation

@override
AuthIcon getIcon() {
  return resolvedIconUrl(
    buttonType: style!.buttonType,
    iconType: style!.iconType,
    buttonColor: getButtonColor(),
    iconUrl: AuthIcons.microsoft,
    iconColor: style!.iconColor,
    iconSize: style!.iconSize,
    darkMode: this.darkMode,
  );
}