CallOptions constructor

const CallOptions({
  1. required String methodName,
  2. required BinaryBlob arg,
  3. Principal? effectiveCanisterId,
  4. bool callSync = true,
})

Implementation

const CallOptions({
  required this.methodName,
  required this.arg,
  this.effectiveCanisterId,
  this.callSync = true,
});