focusedPinTheme static method

PinTheme focusedPinTheme(
  1. BuildContext context
)

Implementation

static PinTheme focusedPinTheme(BuildContext context) {
  return FluoTheme.defaultPinTheme(context).copyDecorationWith(
    border: Border.all(
      color: Theme.of(context).colorScheme.primary,
      width: 1.5,
    ),
  );
}