toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
  'id': id,
  'message': message,
  'timestamp': timestamp.toIso8601String(),
  'type': type.toString(),
  'data': data?.toString(),
  'hasStackTrace': stackTrace != null,
};