ProgressResult constructor

const ProgressResult({
  1. required int tag,
  2. String? functionName,
  3. String? argumentsJson,
  4. String? kwargsJson,
  5. int? callId,
  6. bool? methodCall,
  7. String? resultJson,
  8. int? isError,
  9. String? errorMessage,
  10. String? futureCallIdsJson,
})

Creates a ProgressResult.

Implementation

const ProgressResult({
  required this.tag,
  this.functionName,
  this.argumentsJson,
  this.kwargsJson,
  this.callId,
  this.methodCall,
  this.resultJson,
  this.isError,
  this.errorMessage,
  this.futureCallIdsJson,
});