NomoDivider constructor

const NomoDivider({
  1. Key? key,
  2. Axis axis = Axis.horizontal,
  3. Color? color,
  4. double? crossAxisSize,
  5. double? crossAxisSpacing,
  6. Widget? middle,
})

Implementation

const NomoDivider({
  super.key,
  this.axis = Axis.horizontal,
  this.color,
  this.crossAxisSize,
  this.crossAxisSpacing,
  this.middle,
});