FFTestStep constructor
FFTestStep({
- FFWhenTestStep? when,
- FFThenTestStep? then,
- String? name,
- String? description,
- bool? disabled,
Implementation
factory FFTestStep({
FFWhenTestStep? when,
FFThenTestStep? then,
$core.String? name,
$core.String? description,
$core.bool? disabled,
}) {
final result = create();
if (when != null) result.when = when;
if (then != null) result.then = then;
if (name != null) result.name = name;
if (description != null) result.description = description;
if (disabled != null) result.disabled = disabled;
return result;
}