toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final crashId = this.crashId;
  final crashType = this.crashType;
  final sessionType = this.sessionType;
  return {
    'crashId': ?crashId,
    'crashType': ?crashType,
    'sessionType': ?sessionType,
  };
}