applyGenerated method
Implementation
Story applyGenerated({
String? name,
StoryBuilder? builder,
}) {
builder = this.builder == AutomaticBuilder
? (builder ?? this.builder)
: this.builder;
return Story.apply(
name: this.name ?? name,
builder: builder,
decorators: decorators,
order: order,
params: params,
tags: tags,
);
}