defaultShape property

ShapeBorder defaultShape

Implementation

ShapeBorder get defaultShape {
  return RoundedRectangleBorder(
    borderRadius: BorderRadius.circular(2),
    side: BorderSide(
      color: widget.color ?? const Color(0xFF000000),
      width: 2,
    ),
  );
}