@@ -67,7 +67,7 @@ void main() {
67
67
throwable: throwable,
68
68
exceptions: [
69
69
fixture.sentryError (throwable),
70
- fixture.sentryError (dioError)
70
+ fixture.sentryError (dioError),
71
71
],
72
72
);
73
73
final processedEvent = sut.apply (event) as SentryEvent ;
@@ -96,7 +96,7 @@ void main() {
96
96
throwable: throwable,
97
97
exceptions: [
98
98
fixture.sentryError (throwable),
99
- fixture.sentryError (dioError)
99
+ fixture.sentryError (dioError),
100
100
],
101
101
);
102
102
final processedEvent = sut.apply (event) as SentryEvent ;
@@ -125,7 +125,7 @@ void main() {
125
125
throwable: throwable,
126
126
exceptions: [
127
127
fixture.sentryError (throwable),
128
- fixture.sentryError (dioError)
128
+ fixture.sentryError (dioError),
129
129
],
130
130
);
131
131
final processedEvent = sut.apply (event) as SentryEvent ;
@@ -177,7 +177,7 @@ void main() {
177
177
throwable: throwable,
178
178
exceptions: [
179
179
fixture.sentryError (throwable),
180
- fixture.sentryError (dioError)
180
+ fixture.sentryError (dioError),
181
181
],
182
182
);
183
183
final processedEvent = sut.apply (event) as SentryEvent ;
@@ -207,7 +207,7 @@ void main() {
207
207
data: 'foobar' ,
208
208
headers: Headers .fromMap (< String , List <String >> {
209
209
'foo' : ['bar' ],
210
- 'set-cookie' : ['foo=bar' ]
210
+ 'set-cookie' : ['foo=bar' ],
211
211
}),
212
212
requestOptions: request,
213
213
isRedirect: true ,
@@ -219,7 +219,7 @@ void main() {
219
219
throwable: throwable,
220
220
exceptions: [
221
221
fixture.sentryError (throwable),
222
- fixture.sentryError (dioError)
222
+ fixture.sentryError (dioError),
223
223
],
224
224
);
225
225
final processedEvent = sut.apply (event) as SentryEvent ;
@@ -248,7 +248,7 @@ void main() {
248
248
response: Response <dynamic >(
249
249
data: 'foobar' ,
250
250
headers: Headers .fromMap (< String , List <String >> {
251
- 'foo' : ['bar' ]
251
+ 'foo' : ['bar' ],
252
252
}),
253
253
requestOptions: request,
254
254
isRedirect: true ,
@@ -260,7 +260,7 @@ void main() {
260
260
throwable: throwable,
261
261
exceptions: [
262
262
fixture.sentryError (throwable),
263
- fixture.sentryError (dioError)
263
+ fixture.sentryError (dioError),
264
264
],
265
265
);
266
266
final processedEvent = sut.apply (event) as SentryEvent ;
@@ -320,7 +320,7 @@ void main() {
320
320
throwable: throwable,
321
321
exceptions: [
322
322
fixture.sentryError (throwable),
323
- fixture.sentryError (dioError)
323
+ fixture.sentryError (dioError),
324
324
],
325
325
);
326
326
final processedEvent = sut.apply (event) as SentryEvent ;
@@ -338,7 +338,7 @@ void main() {
338
338
final dataByType = {
339
339
ResponseType .plain: ['plain' ],
340
340
ResponseType .bytes: [
341
- [1337 ]
341
+ [1337 ],
342
342
],
343
343
ResponseType .json: [
344
344
9001 ,
@@ -347,7 +347,7 @@ void main() {
347
347
true ,
348
348
['list' ],
349
349
{'map-key' : 'map-value' },
350
- ]
350
+ ],
351
351
};
352
352
353
353
for (final entry in dataByType.entries) {
@@ -375,7 +375,7 @@ void main() {
375
375
throwable: throwable,
376
376
exceptions: [
377
377
fixture.sentryError (throwable),
378
- fixture.sentryError (dioError)
378
+ fixture.sentryError (dioError),
379
379
],
380
380
);
381
381
final processedEvent = sut.apply (event) as SentryEvent ;
0 commit comments