loadSvg method
Loads an Svg using the Game's own asset loader.
Implementation
Future<Svg> loadSvg(
String fileName, {
String? package,
bool fixedRatio = false,
int cacheSize = Svg.defaultCacheSize,
}) => Svg.load(
fileName,
cache: assets,
package: package,
fixedRatio: fixedRatio,
cacheSize: cacheSize,
);