toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final keyFormat = this.keyFormat;
  final keyFormatVersions = this.keyFormatVersions;
  final staticKeyValue = this.staticKeyValue;
  final url = this.url;
  return {
    if (keyFormat != null) 'keyFormat': keyFormat,
    if (keyFormatVersions != null) 'keyFormatVersions': keyFormatVersions,
    if (staticKeyValue != null) 'staticKeyValue': staticKeyValue,
    if (url != null) 'url': url,
  };
}