executeRow method

Future<Map<String, dynamic>?> executeRow(
  1. DbContext dbc
)
returns the first row of the result set, or null if no data found

Implementation

Future<Map<String, dynamic>?> executeRow(DbContext dbc) {
  return dbc.executeSelectRow(this);
}