stringSignature property
String
get
stringSignature
The user-visible signature of this event, consisting of its name and the type of its parameters.
Implementation
String get stringSignature {
final parameters = components.map((c) => c.parameter);
return '$name(${_encodeParameters(parameters)})';
}