getFileAttriburtes method

  1. @override
Future<Map> getFileAttriburtes(
  1. String path
)
override

Implementation

@override
Future<Map> getFileAttriburtes(String path) async {
  var attributes =
      await methodChannel.invokeMethod('get_file_attributes', path);
  return attributes as Map;
}