How to fully dump / print variable to console in the Dart language?
dart:developer library includes inspect function that allows debuggers to open an inspector on the object. To use it add: import ‘dart:developer’; And then you can see your inspected variable/object in console with: inspect(myVar);