copyWith method

MetaStoriesDefinition copyWith({
  1. List<String>? storiesNames,
})

Implementation

MetaStoriesDefinition copyWith({List<String>? storiesNames}) {
  return MetaStoriesDefinition(
      package: package,
      path: path,
      storiesNames: storiesNames ?? this.storiesNames);
}