IOSNativeView constructor

IOSNativeView({
  1. required List<IOSNativeView> children,
  2. required IOSElementType elementType,
  3. required String identifier,
  4. required String label,
  5. required String title,
  6. required bool hasFocus,
  7. required bool isEnabled,
  8. required bool isSelected,
  9. required Rectangle frame,
  10. String? accessibilityLabel,
  11. String? placeholderValue,
  12. String? value,
  13. String? bundleId,
})

Implementation

IOSNativeView({
  required this.children,
  required this.elementType,
  required this.identifier,
  required this.label,
  required this.title,
  required this.hasFocus,
  required this.isEnabled,
  required this.isSelected,
  required this.frame,
  this.accessibilityLabel,
  this.placeholderValue,
  this.value,
  this.bundleId,
});