exists method

Future<bool> exists()

Returns whether the launcher icon configuration file exists.

Implementation

Future<bool> exists() async {
  return _file.existsSync();
}