listBoxes method

Future<List<String>> listBoxes()

Implementation

Future<List<String>> listBoxes() async {
  final response = await _call(ConnectAction.listBoxes);
  if (response == null) return [];

  return (response as List).cast<String>().toList();
}