BuildStepConfig class sealed

Base type for all build step configurations.

Subclasses are dispatched by the type field using BuildStepConfig.fromJson.

Implementers

Constructors

BuildStepConfig.fromJson(Map<String, dynamic> json)
Creates the right BuildStepConfig subclass from json.
factory

Properties

execution String
Execution context: target (cross-compiled) or host (built for host).
final
hashCode int
The hash code for this object.
no setterinherited
id String
Unique identifier for this step within the recipe.
final
needs List<String>
Step IDs that must complete before this step runs.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String
The step type string used for registry dispatch.
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toBuildStep() NativeBuildStep
Converts this config to its runtime NativeBuildStep equivalent.
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

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