CustomLane constructor

CustomLane({
  1. required String title,
  2. required List<CustomScreen> children,
})

Implementation

CustomLane({
  required this.title,
  required this.children,
});