ApartmentRange constructor

const ApartmentRange({
  1. required String start,
  2. String? end = null,
})

Implementation

const ApartmentRange({
  required this.start,
  this.end = null
});