DbRow class

A database row

Annotations

Constructors

DbRow(List<DbRecord> records)
Default constructor
const
DbRow.fromMap(DbTable? table, Map<String, dynamic> row)
Create from a map of strings
factory
DbRow.fromRecord(DbRecord record)
Build a row from a single record
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
records List<DbRecord>
The row's records
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

line() String
Get a string representation
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
record<T>(String key) → T?
Get a record value
toMap() Map<String, dynamic>
Convert to a map
toString() String
A string representation of this object.
inherited
toStringsMap() Map<String, String>
Convert to a map of strings

Operators

operator ==(Object other) bool
The equality operator.
inherited