NikuButton.outlined constructor

NikuButton.outlined(
  1. Widget child, {
  2. Key? key,
})

Implementation

factory NikuButton.outlined(Widget child, {Key? key}) {
  return NikuButton(
    child,
    type: NikuButtonType.Outlined,
    key: key,
  );
}