toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (biosName != null) 'biosName': biosName!,
      if (id != null) 'id': id!,
      if (manufacturer != null) 'manufacturer': manufacturer!,
      if (releaseDate != null) 'releaseDate': releaseDate!,
      if (smbiosUuid != null) 'smbiosUuid': smbiosUuid!,
      if (version != null) 'version': version!,
    };