NomoSider constructor

const NomoSider(
  1. {dynamic key,
  2. required dynamic child,
  3. dynamic backgroundColor,
  4. dynamic border,
  5. dynamic padding,
  6. double? width}
)

Implementation

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