toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final execution = this.execution;
  final executionId = this.executionId;
  final requestId = this.requestId;
  return {
    'execution': ?execution,
    'executionId': ?executionId,
    'requestId': ?requestId,
  };
}