loadImage static method

Future<Uint8List?> loadImage(
  1. String localRef
)

Implementation

static Future<Uint8List?> loadImage(String localRef) async {
  if (localRef.startsWith('db://')) {
    return await loadImageWeb(localRef);
  } else {
    return await loadImageMobile(localRef);
  }
}