CallParams constructor

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

Implementation

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