GeoRestriction constructor

GeoRestriction({
  1. required int quantity,
  2. required GeoRestrictionType restrictionType,
  3. List<String>? items,
})

Implementation

GeoRestriction({
  required this.quantity,
  required this.restrictionType,
  this.items,
});