resolveBackgroundColor method

  1. @override
Color? resolveBackgroundColor(
  1. Set<MaterialState> states
)

Implementation

@override
Color? resolveBackgroundColor(Set<MaterialState> states) {
  return resolvedBackgroundColor(
    color: const ButtonColor(
      AuthColors.github,
      onOtherIcons: Colors.white,
    ),
    states: states,
    isDark: isDark,
    buttonType: style.buttonType,
    iconType: style.iconType,
  );
}