BloomNativeView constructor

const BloomNativeView({
  1. Key? key,
  2. required String viewType,
  3. Map<String, dynamic> props = const {},
  4. void onEvent(
    1. String eventName,
    2. dynamic payload
    )?,
  5. Widget? fallback,
  6. Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers,
})

Creates a BloomNativeView widget.

Implementation

const BloomNativeView({
  super.key,
  required this.viewType,
  this.props = const {},
  this.onEvent,
  this.fallback,
  this.gestureRecognizers,
});