GgRouteParams constructor

const GgRouteParams({
  1. Key? key,
  2. required Widget child,
  3. required Map<String, GgRouteParam> params,
})

Constructor.

  • key - The widget's key.

Implementation

const GgRouteParams({
  super.key,
  required this.child,
  required this.params,
});