Skip to content

Commit d729fa4

Browse files
authored
refactor: Remove unnecessary parentheses in Bucket.fromJson (#1201)
1 parent 7fe6b30 commit d729fa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/storage_client/lib/src/types.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Bucket {
2727
});
2828

2929
Bucket.fromJson(Map<String, dynamic> json)
30-
: id = (json)['id'] as String,
30+
: id = json['id'] as String,
3131
name = json['name'] as String,
3232
owner = json['owner'] as String,
3333
createdAt = json['created_at'] as String,

0 commit comments

Comments
 (0)