rows property
deno-postgres@v0.17.0/QueryObjectResult/rows.
Implementation
List<Map<String, dynamic>> get rows =>
// ignore: cast_nullable_to_non_nullable
(dartify(getProperty(this, 'rows')) as List)
.cast<Map<dynamic, dynamic>>()
.map((e) => e.cast<String, dynamic>())
.toList();