Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 365 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 365 Bytes

debug_mode

A simple hack to check if Flutter app is in debug mode

In debug mode the

the Dart assert statement is enabled, and the Flutter framework uses this to perform many runtime checks verifying that invariants are not being violated.

Source

Example

if(DebugMode.isInDebugMode){
    // DEBUG Mode
}