Skip to content

Instantly share code, notes, and snippets.

@JaveedIshaq
Created March 5, 2022 19:00
Show Gist options
  • Save JaveedIshaq/54c67d1e3914df270bb444daa3a53b3f to your computer and use it in GitHub Desktop.
Save JaveedIshaq/54c67d1e3914df270bb444daa3a53b3f to your computer and use it in GitHub Desktop.
dart_flutter_log_extension
import 'dart:developer' as devtools show log;
extension Log on Object {
void log() => devtools.log(toString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment