clean method

Future<void> clean()

Runs flutter clean.

Implementation

Future<void> clean() async {
  await runFlutter(['clean']);
}