copyWith method
A11yServiceNode
copyWith(
{ - List<int>? depth,
- List<int>? bounds,
- String? id,
- String? packageName,
- String? className,
- String? text,
- String? description,
- bool? clickable,
- bool? scrollable,
- bool? editable,
})
Implementation
A11yServiceNode copyWith({
List<int>? depth,
List<int>? bounds,
String? id,
String? packageName,
String? className,
String? text,
String? description,
bool? clickable,
bool? scrollable,
bool? editable,
}) {
return A11yServiceNode(
depth: depth ?? this.depth,
bounds: bounds ?? this.bounds,
id: id ?? this.id,
packageName: packageName ?? this.packageName,
className: className ?? this.className,
text: text ?? this.text,
description: description ?? this.description,
clickable: clickable ?? this.clickable,
scrollable: scrollable ?? this.scrollable,
editable: editable ?? this.editable,
);
}