FocusedDate constructor

const FocusedDate({
  1. Key? key,
  2. required Widget child,
  3. DateTime? date,
  4. TraversalDirection? scrollDirection,
})

Implementation

const FocusedDate({
  Key? key,
  required Widget child,
  this.date,
  this.scrollDirection,
}) : super(key: key, child: child);