Buffer.create constructor
Implementation
factory Buffer.create(int width, int height, {bool tracksDirty = true}) {
final lines = List<Line>.generate(height, (_) => Line.filled(width));
final b = Buffer._(lines, tracksDirty: tracksDirty);
b.resize(width, height);
return b;
}