toJson method

Map<String, dynamic> toJson()

Implementation

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