KrInkWell constructor

const KrInkWell({
  1. Key? key,
  2. required Future onTap(),
  3. required Widget child,
  4. Widget? onLoading,
  5. Widget? onError,
  6. ButtonStyle? style,
  7. KrButtonController? controller,
  8. FocusNode? focusNode,
})

Implementation

const KrInkWell(
    {Key? key,
    required this.onTap,
    required this.child,
    this.onLoading,
    this.onError,
    this.style,
    this.controller,
    this.focusNode})
    : super(key: key);