getBytes static method

Future<List<int>?> getBytes(
  1. String key
)

Implementation

static Future<List<int>?> getBytes(String key) async {
  return await _cacheApi.getBytes(key) as List<int>?;
}