What is "Service extensions" in Flutter?

Viewed 378

https://flutter.dev/docs/testing/build-modes

The above page has the following explanation.
In debug mode,Service extensions are enabled.
in release mode,Service extensions are disabled. what is "Service extensions" in Flutter?

1 Answers

Service Extension are a set of tools that provide additional debugging capabilities, For example debugAllowBanner, debugDumpApp, debugDumpRenderTree,debugPaint etc.

You can find the full list of these service extension at the source link below.

Source

Related