InAppDebuggerIcon constructor

const InAppDebuggerIcon({
  1. Key? key,
  2. required ScreenEdge? currentEdge,
  3. required double iconSize,
  4. required bool isShowingFunctions,
  5. required void setIsShowingFunctions(
    1. bool newValue
    ),
  6. required EdgeInsets showingFunctionsPadding,
  7. required void addOverlay(),
  8. required void removeOverlay(),
  9. required void runMinimalInAppIconSizeAnimation(),
})

Implementation

const InAppDebuggerIcon({
  Key? key,
  required ScreenEdge? currentEdge,
  required this.iconSize,
  required this.isShowingFunctions,
  required this.setIsShowingFunctions,
  required this.showingFunctionsPadding,
  required this.addOverlay,
  required this.removeOverlay,
  required this.runMinimalInAppIconSizeAnimation,
})  : _currentEdge = currentEdge,
      super(key: key);