toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final errorCatcherId = this.errorCatcherId;
  final errorCatcherNumber = this.errorCatcherNumber;
  final label = this.label;
  final position = this.position;
  final startErrorTasks = this.startErrorTasks;
  return {
    'description': ?description,
    'errorCatcherId': ?errorCatcherId,
    'errorCatcherNumber': ?errorCatcherNumber,
    'label': ?label,
    'position': ?position,
    'startErrorTasks': ?startErrorTasks,
  };
}