Skip to content

Commit e7906c7

Browse files
author
ekjotmultani
committed
ran dart format on two failing files
1 parent a17b602 commit e7906c7

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

packages/amplify_core/lib/src/config/amplify_outputs/storage/bucket_outputs.dart

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,24 @@ part 'bucket_outputs.g.dart';
99
/// The Amplify Gen 2 outputs for Buckets in the Storage category.
1010
/// {@endtemplate}
1111
@zAmplifyOutputsSerializable
12-
class BucketOutputs
13-
with AWSEquatable<BucketOutputs>, AWSSerializable, AWSDebuggable{
12+
class BucketOutputs
13+
with AWSEquatable<BucketOutputs>, AWSSerializable, AWSDebuggable {
1414
/// {@macro amplify_core.amplify_outputs.bucket_outputs}
15-
const BucketOutputs({required this.name, required this.bucketName, required this.awsRegion,});
15+
const BucketOutputs({
16+
required this.name,
17+
required this.bucketName,
18+
required this.awsRegion,
19+
});
1620

1721
factory BucketOutputs.fromJson(Map<String, Object?> json) =>
1822
_$BucketOutputsFromJson(json);
1923

2024
/// The user friendly name of the bucket
2125
final String name;
26+
2227
/// The Amazon S3 bucket name.
2328
final String bucketName;
29+
2430
/// The AWS region of Amazon S3 resources.
2531
final String awsRegion;
2632

@@ -33,7 +39,7 @@ class BucketOutputs
3339

3440
@override
3541
String get runtimeTypeName => 'BucketOutputs';
36-
42+
3743
@override
3844
Object? toJson() {
3945
return _$BucketOutputsToJson(this);

packages/amplify_core/lib/src/config/amplify_outputs/storage/storage_outputs.dart

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ part 'storage_outputs.g.dart';
1313
class StorageOutputs
1414
with AWSEquatable<StorageOutputs>, AWSSerializable, AWSDebuggable {
1515
/// {@macro amplify_core.amplify_outputs.storage_outputs}
16-
const StorageOutputs({required this.awsRegion, required this.bucketName, this.buckets,});
17-
16+
const StorageOutputs({
17+
required this.awsRegion,
18+
required this.bucketName,
19+
this.buckets,
20+
});
1821

1922
factory StorageOutputs.fromJson(Map<String, Object?> json) =>
2023
_$StorageOutputsFromJson(json);

0 commit comments

Comments
 (0)