isDefault property

bool get isDefault

Controls whether this profile is the default action that will be taken when its kind is actioned. For example, if the user clicks the generic "run all" button, then the default profile for {@link TestRunProfileKind.Run} will be executed, although the user can configure this.

Implementation

_i2.bool get isDefault => _i5.getProperty(
      this,
      'isDefault',
    );
set isDefault (bool value)

Implementation

set isDefault(_i2.bool value) {
  _i5.setProperty(
    this,
    'isDefault',
    value,
  );
}