suffix property
The suffix is applied to the generated mixin
Example:
@ToString(suffix: "S")
class Something with _$SomethingS {}
// generates either a class
mixin _$SomethingS {}
// or an extension
extension $SomethingS on Something {}
Implementation
final String? suffix;