getDisabledDecoration method

Decoration getDisabledDecoration(
  1. BuildContext context
)

Deselected card decoration

Implementation

Decoration getDisabledDecoration(BuildContext context) {
  return disabledDecoration ??
      BoxDecoration(
        color: Colors.grey,
        borderRadius: _getBorderRadius(),
      );
}