print object in dart code example
Example 1: print flutter objects
/// since Dart 3.12 you can use `inspect`
inspect(object)
Example 2: print dart
import 'dart:html';
main() {
var value = querySelector('input').value;
print('The value of the input is: $value');
}