Group class

Constructors

Group.new({required int id, required String name, required int suiteID, required int testCount, int? parentID, int? line, int? column, String? url})
Group.fromJson(Map<String, dynamic> json)
Factory constructor for creating a Group instance from a JSON map.
factory

Properties

column int?
The (1-based) column on which the group was defined, or null.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
id int
An opaque ID for the group.
getter/setter pair
line int?
The (1-based) line on which the group was defined, or null.
getter/setter pair
name String
The name of the group, including prefixes from any containing groups.
getter/setter pair
parentID int?
The ID of the group's parent group, unless it's the root group.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
suiteID int
The ID of the suite containing this group.
getter/setter pair
testCount int
The number of tests (recursively) within this group.
getter/setter pair
url String?
The URL for the file in which the group was defined, or null.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Method to convert Group instance into a JSON map.
toString() String
A string representation of this object.
inherited

Operators

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