dayPeriodBorderSide property

BorderSide? dayPeriodBorderSide
final

The color and weight of the day period's outline.

If this is null, the time picker defaults to:

BorderSide(
  color: Color.alphaBlend(
    Theme.of(context).colorScheme.onBackground.withOpacity(0.38),
    Theme.of(context).colorScheme.surface,
  ),
),

Implementation

final BorderSide? dayPeriodBorderSide;