toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  if (status != null) {
    _json[r'status'] = status;
  }
  if (appState != null) {
    _json[r'appState'] = appState;
  }
  if (overallDownloadProgress != null) {
    _json[r'overallDownloadProgress'] = overallDownloadProgress;
  }
  _json[r'containers'] = containers;
  _json[r'images'] = images;
  return _json;
}