toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final subType = this.subType;
  final targetResource = this.targetResource;
  final type = this.type;
  final windowEndTime = this.windowEndTime;
  final windowStartTime = this.windowStartTime;
  return {
    'subType': ?subType,
    'targetResource': ?targetResource,
    'type': ?type,
    'windowEndTime': ?windowEndTime,
    'windowStartTime': ?windowStartTime,
  };
}