Skip to content

Commit e4f9690

Browse files
committed
style: 🚨 resolve apply format and lint for reported errors in dart format
1 parent 478e399 commit e4f9690

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/dummy/models/empty_base_model.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import 'package:dio/dio.dart';
55
final class EmptyBaseModel extends Schema {
66
EmptyBaseModel([super.attributes]);
77

8-
EmptyBaseModel.create(super.resourceObject): super.create();
8+
EmptyBaseModel.create(super.resourceObject) : super.create();
99

1010
static void withBaseURL() {
1111
baseUrlCustom = 'foo';

test/unit/schema_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ void main() {
9797

9898
test(
9999
'firstOrNull() method returns null when unauthorized',
100-
() async {
100+
() async {
101101
dioAdapter.onGet(
102102
'http://localhost/posts',
103-
(server) => server.reply(
103+
(server) => server.reply(
104104
401,
105105
<dynamic>[],
106106
delay: const Duration(milliseconds: 500),

0 commit comments

Comments
 (0)