RpcResult constructor

const RpcResult({
  1. required int reqMsgId,
  2. required TlObject result,
})

Rpc Result constructor.

Implementation

const RpcResult({
  required this.reqMsgId,
  required this.result,
}) : super._();