File tree Expand file tree Collapse file tree 8 files changed +8
-7
lines changed
analytics/amplify_analytics_pinpoint_dart/lib/src/impl/flutter_provider_interfaces
smithy/smithy/lib/src/types
storage/amplify_storage_s3_dart/lib/src/storage_s3_service
worker_bee/worker_bee/lib/src Expand file tree Collapse file tree 8 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ abstract class AmplifyPluginConfig with AWSSerializable {
20
20
21
21
/// {@template amplify_core.unknown_plugin_config_factory}
22
22
/// A plugin factory for unknown plugin configs.
23
- /// @{ endtemplate}
23
+ /// {@ endtemplate}
24
24
@internal
25
25
class UnknownPluginConfigFactory
26
26
extends AmplifyPluginConfigFactory <UnknownPluginConfig > {
Original file line number Diff line number Diff line change 3
3
4
4
import 'package:aws_common/aws_common.dart' ;
5
5
6
- /// ( @template amplify_core.state_machine.precondition_exception)
6
+ /// { @template amplify_core.state_machine.precondition_exception}
7
7
/// An exception raised within a state machine when an event could not be
8
8
/// processed due to some precondition not being met.
9
9
/// {@endtemplate}
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ class AuthRule {
76
76
'groupClaim' : groupClaim,
77
77
'groups' : groups,
78
78
'groupsField' : groupsField,
79
- 'provider' : provider != null ? provider ! .name : null ,
79
+ 'provider' : provider? .name,
80
80
'operations' : operations? .map ((op) => op.name).toList (),
81
81
};
82
82
return Map <String , dynamic >.from (map)
Original file line number Diff line number Diff line change 4
4
import 'dart:async' ;
5
5
6
6
/// {@template amplify_analytics_pinpoint.flutter_legacy_native_data_provider}
7
+ /// {@endtemplate}
7
8
abstract class LegacyNativeDataProvider {
8
9
/// Get stored Pinpoint Endpoint Id.
9
10
Future <String ?> getEndpointId (String pinpointAppId);
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import 'package:smithy/ast.dart';
15
15
/// {@template aws.smithy.timestamp}
16
16
/// A [DateTime] wrapper which provides custom formatting and parsing options
17
17
/// for use with Smithy services.
18
- /// @{ endtemplate}
18
+ /// {@ endtemplate}
19
19
class Timestamp {
20
20
/// {@macro aws.smithy.timestamp}
21
21
Timestamp (DateTime timestamp) : _timestamp = timestamp.stripMicroseconds ();
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import 'package:smithy_aws/smithy_aws.dart' as smithy_aws;
15
15
16
16
/// {@template amplify_storage_s3_dart.download_task}
17
17
/// A task created to fulfill a download operation.
18
- /// {@template }
18
+ /// {@endtemplate }
19
19
@internal
20
20
class S3DownloadTask {
21
21
/// {@macro amplify_storage_s3_dart.download_task}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ part 'transfer_record.g.dart';
10
10
/// {@template amplify_storage_s3_dart.transfer_data}
11
11
/// the type used by Storage S3 plugin upload operations when using s3 multipart upload.
12
12
/// it is persisted to TransferDatabase.
13
- /// {@endtemplate amplify_storage_s3_dart.transfer_data }
13
+ /// {@endtemplate}
14
14
@JsonSerializable ()
15
15
class TransferRecord {
16
16
/// {@macro amplify_storage_s3_dart.transfer_data}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ final _voidType = _typeOf<void>();
20
20
/// {@endtemplate}
21
21
abstract class WorkerBeeCommon <Request extends Object , Response >
22
22
implements AWSLoggerPlugin , Closeable {
23
- /// {@template worker_bee.worker_bee_common}
23
+ /// {@macro worker_bee.worker_bee_common}
24
24
WorkerBeeCommon ({
25
25
Serializers ? serializers,
26
26
}) : serializers = serializers == null
You can’t perform that action at this time.
0 commit comments