AndroidNativeView constructor

AndroidNativeView({
  1. String? resourceName,
  2. String? text,
  3. String? className,
  4. String? contentDescription,
  5. String? applicationPackage,
  6. required int childCount,
  7. required bool isCheckable,
  8. required bool isChecked,
  9. required bool isClickable,
  10. required bool isEnabled,
  11. required bool isFocusable,
  12. required bool isFocused,
  13. required bool isLongClickable,
  14. required bool isScrollable,
  15. required bool isSelected,
  16. required Rectangle visibleBounds,
  17. required Point2D visibleCenter,
  18. required List<AndroidNativeView> children,
})

Implementation

AndroidNativeView({
  this.resourceName,
  this.text,
  this.className,
  this.contentDescription,
  this.applicationPackage,
  required this.childCount,
  required this.isCheckable,
  required this.isChecked,
  required this.isClickable,
  required this.isEnabled,
  required this.isFocusable,
  required this.isFocused,
  required this.isLongClickable,
  required this.isScrollable,
  required this.isSelected,
  required this.visibleBounds,
  required this.visibleCenter,
  required this.children,
});