PluginOutlinedButtonSmall constructor

const PluginOutlinedButtonSmall({
  1. Key? key,
  2. String? content,
  3. bool active = false,
  4. Color? color,
  5. EdgeInsets? margin,
  6. EdgeInsets? padding,
  7. Function? onPressed,
  8. Color? activeTextcolor,
  9. Color? unActiveTextcolor,
  10. double? minSize = 33,
  11. double? fontSize,
})

Implementation

const PluginOutlinedButtonSmall(
    {Key? key,
    this.content,
    this.active = false,
    this.color,
    this.margin,
    this.padding,
    this.onPressed,
    this.activeTextcolor,
    this.unActiveTextcolor,
    this.minSize = 33,
    this.fontSize})
    : super(key: key);