PluginInputItem constructor

const PluginInputItem({
  1. Key? key,
  2. String? label,
  3. TextStyle? labelStyle,
  4. Color? labelBgColor,
  5. EdgeInsetsGeometry? margin,
  6. required Widget child,
  7. double? bgHeight,
  8. Color? bgColor,
})

Implementation

const PluginInputItem(
    {Key? key,
    this.label,
    this.labelStyle,
    this.labelBgColor,
    this.margin,
    required this.child,
    this.bgHeight,
    this.bgColor})
    : super(key: key);