KFlowButton constructor
KFlowButton({})
Implementation
KFlowButton(
{Key? key,
required this.widgets,
required this.width,
required this.height,
required this.child,
this.duration,
this.flowType = FlowType.circle})
: assert(child != null),
assert(widgets != null),
assert(width != null),
assert(height != null),
super(key: key);