toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (additions != null) 'additions': additions!,
      if (deletions != null) 'deletions': deletions!,
      if (id != null) 'id': id!,
      if (isServing != null) 'isServing': isServing!,
      if (kind != null) 'kind': kind!,
      if (startTime != null) 'startTime': startTime!,
      if (status != null) 'status': status!,
    };