Skip to content

Commit 67e2fe2

Browse files
committed
More const
1 parent c5ccacf commit 67e2fe2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/common_client/lib/src/plugins/plugin.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class PluginSdkMetadata {
3333
/// If this is a wrapper SDK, then this is the version of the wrapper.
3434
final String? wrapperVersion;
3535

36-
PluginSdkMetadata(
36+
const PluginSdkMetadata(
3737
{required this.name,
3838
required this.version,
3939
this.wrapperName,
@@ -54,7 +54,7 @@ final class PluginCredentialInfo {
5454
/// The value of the credential.
5555
final String value;
5656

57-
PluginCredentialInfo({required this.type, required this.value});
57+
const PluginCredentialInfo({required this.type, required this.value});
5858

5959
@override
6060
String toString() {

0 commit comments

Comments
 (0)