by @kodeazy

flutter how to print data in console in dart file?

Home » flutter » flutter how to print data in console in dart file?
  • To print the data in console in flutter we use debugPrint by importing import 'package:flutter/foundation.dart'; package.
  • Below is the sample program on how to print the data in console.

    import 'package:flutter/foundation.dart';
    void main() {
    var dataToPrint = "www.kodeazy.com";
    debugPrint('movieTitle: $dataToPrint');
    }

    Output: Console Print Image