NativeView constructor

NativeView({
  1. required String? className,
  2. required String? text,
  3. required String? contentDescription,
  4. required bool focused,
  5. required bool enabled,
  6. required int? childCount,
  7. required String? resourceName,
  8. required String? applicationPackage,
  9. required List<NativeView> children,
})

Creates a new NativeView.

Implementation

NativeView({
  required this.className,
  required this.text,
  required this.contentDescription,
  required this.focused,
  required this.enabled,
  required this.childCount,
  required this.resourceName,
  required this.applicationPackage,
  required this.children,
});