SDNWidget constructor

SDNWidget({
  1. required Room room,
  2. String? creatorUserId,
  3. Map<String, dynamic>? data = const {},
  4. String? id,
  5. required String? name,
  6. required String type,
  7. required String url,
  8. bool waitForIframeLoad = false,
})

Implementation

SDNWidget({
  required this.room,
  this.creatorUserId,
  this.data = const {},
  this.id,
  required this.name,
  required this.type,
  required this.url,
  this.waitForIframeLoad = false,
});