filesCount method

Future<int> filesCount()

Implementation

Future<int> filesCount() async {
  await initialize();
  return (await _backend.files()).length;
}