CallRequest constructor

CallRequest({
  1. required Principal canisterId,
  2. required String methodName,
  3. required BinaryBlob arg,
  4. dynamic nonce,
  5. Object? sender,
  6. Expiry? ingressExpiry,
})

Implementation

CallRequest({
  required this.canisterId,
  required this.methodName,
  required this.arg,
  this.nonce,
  super.sender,
  super.ingressExpiry,
});