IdentificationLink constructor

IdentificationLink({
  1. required String type,
  2. required String id,
})

Returns a new IdentificationLink instance.

Implementation

IdentificationLink({
  required this.type,
  required this.id,
});