LinkAccount constructor

LinkAccount({
  1. required String id,
  2. required String mask,
  3. required String name,
  4. required String type,
  5. required String subtype,
  6. required String verificationStatus,
})

Implementation

LinkAccount({
  required this.id,
  required this.mask,
  required this.name,
  required this.type,
  required this.subtype,
  required this.verificationStatus,
});