Reply<T> constructor

Reply<T>({
  1. required int msgId,
  2. required Channel<T, dynamic> channel,
})

Implementation

Reply({
  required this.msgId,
  required this.channel,
});