toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (description != null) 'description': description!,
      if (errorCatcherId != null) 'errorCatcherId': errorCatcherId!,
      if (errorCatcherNumber != null)
        'errorCatcherNumber': errorCatcherNumber!,
      if (label != null) 'label': label!,
      if (position != null) 'position': position!,
      if (startErrorTasks != null) 'startErrorTasks': startErrorTasks!,
    };