generate method
Generates an item of type T
Implementation
@override
Landscape generate() {
final generator = BatchGenerator(_getBatch());
generator.seed(_seed);
Landscape landscape = Landscape.fromShallowMap(generator.generate());
if (_landscapeType is Fixable<Landscape>) {
landscape = (_landscapeType as Fixable).getFixed(landscape);
}
return landscape;
}