Created
March 5, 2022 19:00
-
-
Save JaveedIshaq/54c67d1e3914df270bb444daa3a53b3f to your computer and use it in GitHub Desktop.
dart_flutter_log_extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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