ArrowContainer constructor

const ArrowContainer({
  1. Key? key,
  2. required Widget child,
  3. List<Listenable> listenables = const [],
})

Implementation

const ArrowContainer({
  Key? key,
  required this.child,
  this.listenables = const [],
}) : super(key: key);