suffix property

String? suffix
final

The suffix is applied to the generated mixin

Example:

@CopyWith(suffix: "S")
class SomeCopyWith with _$SomeCopyWithS {}

// generates
mixin SomeCopyWithS {}

Implementation

final String? suffix;