FFTestStep constructor

FFTestStep({
  1. FFWhenTestStep? when,
  2. FFThenTestStep? then,
  3. String? name,
  4. String? description,
  5. 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;
}