dispose method

void dispose()

Implementation

void dispose() {
  atlas?.dispose();
  atlas = null;
  for (final v in chunks) {
    v.dispose();
  }
}