NativeView constructor

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

Implementation

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