fake static method
Creates a fake WooCategoryDisplay instance for testing purposes
This method generates a random display type, making it useful for testing and development.
Returns
A WooCategoryDisplay instance with randomly selected display type.
Example Usage
final fakeDisplay = WooCategoryDisplay.fake();
Implementation
static WooCategoryDisplay fake() {
return values[Faker().randomGenerator.integer(values.length - 1)];
}