applyBorder method

Widget applyBorder(
  1. BuildContext context,
  2. Widget child
)

Applies border styling to a widget using the resolved Border

Implementation

Widget applyBorder(BuildContext context, Widget child) {
  return FlyBorderUtils.apply(context, flyStyle, child);
}