PluginDetails class

PluginDetails

{ "name": String "lintRules": List

Clients may not extend, implement or mix-in this class.

Constructors

PluginDetails.new(String name, List<String> lintRules, List<String> warningRules, List<AssistDescription> assists, List<FixDescription> fixes)
PluginDetails.fromJson(JsonDecoder jsonDecoder, String jsonPath, Object? json, {ClientUriConverter? clientUriConverter})
factory

Properties

assists List<AssistDescription>
A list of the descriptions of registered assists.
getter/setter pair
fixes List<FixDescription>
A list of the descriptions of registered fixes.
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
lintRules List<String>
A list of the IDs of the analysis rules which have been registered as lint rules.
getter/setter pair
name String
The name of the plugin.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
warningRules List<String>
A list of the IDs of the analysis rules which have been registered as warning rules.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson({ClientUriConverter? clientUriConverter}) Map<String, Object>
Returns a JSON presentation of the object.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override