NikuPadding constructor

NikuPadding({
  1. Key? key,
  2. double top = 0,
  3. double bottom = 0,
  4. double left = 0,
  5. double right = 0,
  6. required Widget child,
})

Implementation

NikuPadding({
  Key? key,
  this.top = 0,
  this.bottom = 0,
  this.left = 0,
  this.right = 0,
  required this.child,
}) : super(key: key);