getTables property

Future<List> getTables

Implementation

Future<List> get getTables async {
  return (await FileEncryptor().decrypt(await _init.path)).split(";");
  // try {
  //   return (await FileCryptor().decrypt(await _init.path)).split(";");
  // } catch (e) {
  //   // If encountering an error, return 0
  //   if (kDebugMode) {
  //     print(e);
  //   }
  //   return [];
  // }
}