ChannelIdentity constructor

const ChannelIdentity({
  1. required String platform,
  2. required String channelId,
  3. String? displayName,
})

Implementation

const ChannelIdentity({
  required this.platform,
  required this.channelId,
  this.displayName,
});