NomoSider constructor

const NomoSider({
  1. required Widget child,
  2. Key? key,
  3. Color? backgroundColor,
  4. Border? border,
  5. EdgeInsetsGeometry? padding,
  6. double? width,
  7. double? scrollPadding,
})

Implementation

const NomoSider({
  required this.child,
  super.key,
  this.backgroundColor,
  this.border,
  this.padding,
  this.width,
  this.scrollPadding,
});