border property

OutlinedBorder? get border

Implementation

OutlinedBorder? get border {
  if (shape != null) {
    return shape;
  }
  return borderRadius != null
      ? RoundedRectangleBorder(borderRadius: BorderRadius.circular(borderRadius!))
      : null;
}