toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final appId = this.appId;
  final appInstanceId = this.appInstanceId;
  final appType = this.appType;
  final runningDuration = this.runningDuration;
  return {
    'appId': ?appId,
    'appInstanceId': ?appInstanceId,
    'appType': ?appType,
    'runningDuration': ?runningDuration,
  };
}