toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final playbook = this.playbook;
  final playbookInput = this.playbookInput;
  final playbookOutput = this.playbookOutput;
  final playbookState = this.playbookState;
  return {
    'displayName': ?displayName,
    'playbook': ?playbook,
    'playbookInput': ?playbookInput,
    'playbookOutput': ?playbookOutput,
    'playbookState': ?playbookState,
  };
}