DynamicComponent constructor

const DynamicComponent({
  1. Map<String, dynamic>? data,
  2. OnTap? onTap,
  3. Key? key,
  4. Widget? initialWidget,
  5. bool isDSL = false,
  6. dynamic onDslSize(
    1. double width,
    2. double height
    )?,
})

Implementation

const DynamicComponent({
  this.data,
  this.onTap,
  Key? key,
  this.initialWidget,
  this.isDSL = false,
  this.onDslSize,
}) : super(key: key);