query abstract method
Future<List<T> >
query({
- String? tableName,
- bool? distinct,
- List<
String> ? columns, - String? where,
- List<
Object?> ? whereArgs, - String? groupBy,
- String? having,
- String? orderBy,
- int? limit,
- int? offset,
inherited
调用sqflite 封装好的查询
Implementation
Future<List<T>> query(
{String? tableName,
bool? distinct,
List<String>? columns,
String? where,
List<Object?>? whereArgs,
String? groupBy,
String? having,
String? orderBy,
int? limit,
int? offset});