Hey there I am searching for a function which is printing a dynamic variable as completely as possible to the console in Dart language.
In PHP for i
dart:developer library has inspect function that allows debuggers to open an inspector on the object.
To use it add:
import 'dart:developer';
And the you can see your inspected variable/object in console with:
inspect(myVar);