Flutter / Dart package integration_test with null safety

Viewed 257

As I understand it, the Package integration_test package is not null type safe. Can the package be used for the current Flutter version (version> 2.0)? If not, are there any alternatives?

1 Answers

as montionned in Readme file, the package is **DEPRECATED

This package has been moved to the Flutter SDK. Starting with Flutter 2.0.

it should be included as:

dev_dependencies:
  integration_test:
    sdk: flutter
Related