select abstract method

Future<DbResult> select(
  1. String table, {
  2. Map<String, dynamic>? where,
})

Retrieves data from the specified table.

  • where: Optional filter conditions (e.g., {'id': 1}).

Implementation

Future<DbResult> select(String table, {Map<String, dynamic>? where});