toJson method

Map<String, Object> toJson()

Converts a ServerStorageVersion instance to JSON data.

Implementation

Map<String, Object> toJson() {
  final jsonData = <String, Object>{};

  final tempApiServerID = apiServerID;
  final tempDecodableVersions = decodableVersions;
  final tempEncodingVersion = encodingVersion;

  if (tempApiServerID != null) {
    jsonData['apiServerID'] = tempApiServerID;
  }

  if (tempDecodableVersions != null) {
    jsonData['decodableVersions'] = tempDecodableVersions;
  }

  if (tempEncodingVersion != null) {
    jsonData['encodingVersion'] = tempEncodingVersion;
  }

  return jsonData;
}