getCachedSource method

  1. @override
Parser? getCachedSource()
override

Used when provider implementations cache the data. Returns the cached data for the exernal tileset.

Implementation

@override
Parser? getCachedSource() {
  if (data.isEmpty) {
    return null;
  }
  return getSource('');
}