RespValue<T> constructor

const RespValue<T>(
  1. BuildContext context, {
  2. T? xs,
  3. T? sm,
  4. T? md,
  5. T? lg,
  6. T? xl,
  7. T? xxl,
  8. Map<String, T>? others,
})

Constructor for creating a responsive value

Implementation

const RespValue(
  this.context, {
  this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
  this.xxl,
  this.others,
});