Identity constructor

Identity({
  1. String? displayName,
  2. String? id,
})

Creates a new Identity instance.

Implementation

Identity({
  this.displayName,
  this.id,
});