BddTableRows class

Constructors

BddTableRows(List<BddTableValues> _values)

Properties

hashCode int
The hash code for this object.
no setteroverride
rows List<BddTableValues>
Example: ctx.table('notifications').rows;
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
row(int index) BddTableValues
Example: ctx.table('notifications').row(0).val('read') as bool;
rowWhere({required String name, required Object? value}) BddTableValues
Return the first row it finds with the given name/value pair. Example: ctx.table('notifications').rowWhere(name: 'property', value: 'lastPrice').val('market') as Money; If no name/value pair is found, an error is thrown.
toString() String
A string representation of this object.
override

Operators

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