PartialSession constructor

const PartialSession({
  1. required String id,
  2. String? email,
  3. String? mobileE164,
  4. String? mobileIso2,
  5. String? mobileLocal,
})

Implementation

const PartialSession({
  required this.id,
  this.email,
  this.mobileE164,
  this.mobileIso2,
  this.mobileLocal,
});