copyWith method
Variable
copyWith({
- ID? id,
- String? name,
- VariableTypes? type,
- bool? isGlobal,
- bool? isSavedLocally,
- bool? isNullable,
- PageController? pageController,
override
Implementation
@override
Variable copyWith({
ID? id,
String? name,
VariableTypes? type,
bool? isGlobal,
bool? isSavedLocally,
bool? isNullable,
PageController? pageController,
}) =>
PageViewControllerVariable(
id: id ?? this.id,
name: name ?? this.name,
pageController: pageController ?? this.pageController,
);