RuutContact constructor

RuutContact({
  1. required int id,
  2. required String? contactIdentifier,
  3. required String? pubsubToken,
  4. required String? name,
  5. required String? email,
})

Implementation

RuutContact({
  required this.id,
  required this.contactIdentifier,
  required this.pubsubToken,
  required this.name,
  required this.email,
});