forController static method

Widget forController(
  1. DateController? controller, {
  2. Key? key,
  3. bool alwaysUseNarrowestVariant = false,
  4. VoidCallback? onTap,
  5. WeekIndicatorStyle? style,
})

Implementation

static Widget forController(
  DateController? controller, {
  Key? key,
  bool alwaysUseNarrowestVariant = false,
  VoidCallback? onTap,
  WeekIndicatorStyle? style,
}) =>
    _WeekIndicatorForController(
      controller,
      key: key,
      alwaysUseNarrowestVariant: alwaysUseNarrowestVariant,
      onTap: onTap,
      style: style,
    );