DesignRenderer constructor

const DesignRenderer({
  1. Key? key,
  2. required Map<String, dynamic> design,
  3. void onLinkTap(
    1. String url
    )?,
  4. bool transparentBody = false,
})

Implementation

const DesignRenderer({
  super.key,
  required this.design,
  this.onLinkTap,
  this.transparentBody = false,
});