copyWith method
Implementation
TransitionScreenDetails copyWith({String? id, String? name}) {
return TransitionScreenDetails(
id: id ?? this.id,
name: name ?? this.name,
);
}
TransitionScreenDetails copyWith({String? id, String? name}) {
return TransitionScreenDetails(
id: id ?? this.id,
name: name ?? this.name,
);
}