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(
    context.theme.colorScheme.onBackground.withOpacity(0.38),
    context.theme.colorScheme.surface,
  ),
),

Implementation

final BorderSide? dayPeriodBorderSide;