We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5ccacf commit 67e2fe2Copy full SHA for 67e2fe2
packages/common_client/lib/src/plugins/plugin.dart
@@ -33,7 +33,7 @@ final class PluginSdkMetadata {
33
/// If this is a wrapper SDK, then this is the version of the wrapper.
34
final String? wrapperVersion;
35
36
- PluginSdkMetadata(
+ const PluginSdkMetadata(
37
{required this.name,
38
required this.version,
39
this.wrapperName,
@@ -54,7 +54,7 @@ final class PluginCredentialInfo {
54
/// The value of the credential.
55
final String value;
56
57
- PluginCredentialInfo({required this.type, required this.value});
+ const PluginCredentialInfo({required this.type, required this.value});
58
59
@override
60
String toString() {
0 commit comments