toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final force = this.force;
  final platform = this.platform;
  final retentionDays = this.retentionDays;
  final streamLocation = this.streamLocation;
  final tag = this.tag;
  final version = this.version;
  return {
    'force': ?force,
    'platform': ?platform,
    'retentionDays': ?retentionDays,
    'streamLocation': ?streamLocation,
    'tag': ?tag,
    'version': ?version,
  };
}