suffix property
The suffix is applied to the generated mixin
Example:
@Equality(suffix: "S")
class Some with _$SomeS {}
// generates
mixin SomeS {}
Implementation
final String? suffix;
The suffix is applied to the generated mixin
Example:
@Equality(suffix: "S")
class Some with _$SomeS {}
// generates
mixin SomeS {}
final String? suffix;