dataDir property
Returns the absolute path to the directory on the filesystem where all private files belonging to this app are stored.
See: https://developer.android.com/reference/android/content/Context#getDataDir()
Implementation
static Future<Directory> get dataDir async {
assert(Platform.isAndroid);
return Directory(await _channel.invokeMethod('getDataDir') as String);
}