PluginTextTag constructor

const PluginTextTag({
  1. EdgeInsetsGeometry? margin,
  2. EdgeInsetsGeometry? padding,
  3. String title = "",
  4. TextStyle? style,
  5. Color? backgroundColor,
  6. Widget? child,
  7. double height = 24,
  8. Key? key,
})

Implementation

const PluginTextTag(
    {this.margin,
    this.padding,
    this.title = "",
    this.style,
    this.backgroundColor,
    this.child,
    this.height = 24,
    Key? key})
    : super(key: key);