isOutlined property

bool isOutlined

Whether the chip's has outline or not

Implementation

bool get isOutlined {
  final width = borderWidth;
  return borderStyle == BorderStyle.solid && width != null && width >= 1;
}