unselectedButtonStyle method

ButtonStyle unselectedButtonStyle()

Implementation

ButtonStyle unselectedButtonStyle() {
  return style ??
      ElevatedButton.styleFrom(
        onSurface: Colors.transparent,
        onPrimary: Colors.transparent,
        padding: const EdgeInsets.all(0),
        shadowColor: Colors.transparent,
        shape: CircleBorder(),
        primary: Colors.transparent,
      );
}