getDynamic method

  1. @protected
Future<List> getDynamic()

Implementation

@protected
Future<List<dynamic>> getDynamic() async {
  try {
    // compile the query
    this._compileSelect();

    // fetch result
    return await this._db!.rawQuery(this._query!, this._getQueryArgs());
  } catch (e) {
    print(e);
  }
  return [];
}