colorPrimaryDisabled property

Color get colorPrimaryDisabled

Implementation

Color get colorPrimaryDisabled {
  final result = Colors.grey[400];
  if(result == null) {
    return Colors.grey;
  }
  return result;
}