ApplyPageDecorations constructor

const ApplyPageDecorations({
  1. required Widget child,
  2. required List<DartBoardDecoration>? decorations,
  3. Key? key,
  4. RouteSettings? settings,
})

Implementation

const ApplyPageDecorations({
  required this.child,
  required this.decorations,
  Key? key,
  this.settings,
}) : super(key: key);