defaultDecoration property

Decoration? defaultDecoration

Implementation

Decoration? get defaultDecoration => color != null || underlineColor != null
    ? BoxDecoration(
        color: color,
        border: underlineColor != null
            ? Border(bottom: BorderSide(color: underlineColor!, width: 0.8))
            : null)
    : null;