GherkinTable class

Constructors

GherkinTable(Iterable<TableRow> rows, TableRow? header)

Properties

hashCode int
The hash code for this object.
no setterinherited
final
rows Iterable<TableRow>
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

asMap() Iterable<Map<String, String?>>
Returns the table as a iterable of maps. With a single map representing a row in the table keyed by the column name if a header row is present else the column index (as a string)
clone() GherkinTable
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setStepParameter(String parameterName, String value) → void
toJson() String
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

fromJson(String json) GherkinTable