Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save blaugold/7209ee3eb710dbf713f1624990e3d61e to your computer and use it in GitHub Desktop.
Save blaugold/7209ee3eb710dbf713f1624990e3d61e to your computer and use it in GitHub Desktop.
import 'package:flutter/foundation.dart';
void withAssert() {
assert(() {
runConditionalCode();
return true;
});
}
void withEnvironmentFlag() {
if (kDebugMode) runConditionalCode();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment