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