GlobalQuery constructor

const GlobalQuery({
  1. Key? key,
  2. required Widget child,
  3. required Map<ValueKey, double> tops,
  4. required Map<Key, double> notificationTops,
  5. required dynamic insert(
    1. ValueKey key,
    2. double top
    ),
  6. required dynamic remove(
    1. ValueKey key
    ),
  7. required dynamic insertNotification(
    1. Key key,
    2. double top
    ),
  8. required dynamic removeNotification(
    1. Key key
    ),
})

Implementation

const GlobalQuery({
  Key? key,
  required Widget child,
  required this.tops,
  required this.notificationTops,
  required this.insert(ValueKey key, double top),
  required this.remove(ValueKey key),
  required this.insertNotification(Key key, double top),
  required this.removeNotification(Key key),
}) : super(key: key, child: child);