copyWith method
Elementary
copyWith({
- Map<
Type, ElementaryBase> ? components, - Map<
Type, ElementaryBase> ? fundations, - ScrollPhysics? physics,
Implementation
Elementary copyWith({
Map<Type, ElementaryBase<dynamic>>? components,
Map<Type, ElementaryBase<dynamic>>? fundations,
ScrollPhysics? physics,
}) {
return Elementary(
components: components ?? this.components,
fundations: fundations ?? this.fundations,
physics: physics ?? this.physics,
);
}