UArPlaceable constructor

const UArPlaceable({
  1. required String id,
  2. required String title,
  3. UArSource? source,
  4. UArSource? iosSource,
  5. Widget? thumbnail,
  6. double? fitSize,
  7. UArSurface surface = UArSurface.any,
  8. int maxCount = 0,
  9. UArNode builder(
    1. String nodeId
    )?,
  10. Map<String, Object?> data = const <String, Object?>{},
})

Implementation

const UArPlaceable({
  required this.id,
  required this.title,
  this.source,
  this.iosSource,
  this.thumbnail,
  this.fitSize,
  this.surface = UArSurface.any,
  this.maxCount = 0,
  this.builder,
  this.data = const <String, Object?>{},
});