getDefaultBorderSide static method
Returns the default border side using ArcaneTheme.colorScheme.border.
Width is 1.0 for subtle separation in tables.
Implementation
static BorderSide getDefaultBorderSide(BuildContext context) => BorderSide(
color: Theme.of(context).colorScheme.border,
width: 1,
);