toJson method

Map<String, dynamic> toJson()

Implementation

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