initialize method

Future<bool> initialize()

Implementation

Future<bool> initialize() async {
  _table = "${_config.current.customerPlaceCode}_${Tables.webFile}";
  _webFileDB = await databaseFactoryWeb.openDatabase(_table);
  return true;
}