toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final maxDuration = this.maxDuration;
  final requestTimestamp = this.requestTimestamp;
  final stopState = this.stopState;
  final targetState = this.targetState;
  return {
    'maxDuration': ?maxDuration,
    'requestTimestamp': ?requestTimestamp,
    'stopState': ?stopState,
    'targetState': ?targetState,
  };
}