flutter print objects code example
Example 1: flutter print
void main() {
var test = "test";
print('test = $test');
}
Example 2: print flutter objects
/// since Dart 3.12 you can use `inspect`
inspect(object)
void main() {
var test = "test";
print('test = $test');
}
/// since Dart 3.12 you can use `inspect`
inspect(object)