Result constructor

const Result({
  1. required String? rrg,
  2. required String rbrg,
  3. String? roomNumber,
  4. String? bedName,
})

Implementation

const Result({
  required this.rrg,
  required this.rbrg,
  this.roomNumber,
  this.bedName,
});