Context constructor

Context({
  1. int? limit,
  2. String? value,
  3. String? label,
  4. String? key,
})

Implementation

Context({
  this.limit,
  this.value,
  this.label,
  this.key,
});