CallParams constructor

const CallParams({
  1. required CallType callType,
  2. required String serviceName,
  3. String? methodName,
  4. String? memberName,
  5. List? args,
  6. String? instanceId,
  7. InstanceType? instanceType,
  8. String? traceId,
  9. bool? waitResult,
})

Implementation

const CallParams({
  required this.callType,
  required this.serviceName,
  this.methodName,
  this.memberName,
  this.args,
  String? instanceId,
  InstanceType? instanceType,
  String? traceId,
  this.waitResult,
})  : _instanceId = instanceId,
      _instanceType = instanceType,
      _traceId = traceId;