firstAsMapWithMeta method

Future<Map<String, Map<String?, dynamic>>?> firstAsMapWithMeta()

Return row as maps containing table and column names

Implementation

Future<Map<String, Map<String?, dynamic>>?> firstAsMapWithMeta() async {
  if (_firstAsMapFuncWithMeta == null) {
    throw Exception(
        'QueryBuilder@firstAsMapWithMeta firstAsMapFuncWithMeta not defined');
  }
  return _firstAsMapFuncWithMeta!();
}