border static method

FloretParent<DecoratedBox> border(
  1. BoxBorder border
)

Implementation

static FloretParent<DecoratedBox> border(BoxBorder border) =>
    (Widget child) => DecoratedBox(
          child: child,
          decoration: BoxDecoration(
            border: border,
          ),
        );