flutter test print to console code example
Example 1: how to log data to the flutter console ?
import 'package:flutter/foundation.dart';
debugPrint('movieTitle: $movieTitle');
Example 2: print flutter objects
/// since Dart 3.12 you can use `inspect`
inspect(object)