precache static method
Implementation
static Future<void> precache(BuildContext context) async {
for (var device in Devices.all) {
await precachePicture(
StringPicture(SvgPicture.svgStringDecoder, device.svgFrame),
context,
);
}
}