SpOrder constructor

const SpOrder({
  1. int? xs,
  2. int? sm,
  3. int? md,
  4. int? lg,
  5. int? xl,
})

this class is a sort class. when you use 1 of it's value, the value will create an ordering when the screen on the value condition.

Implementation

const SpOrder({
  this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
});