getMeta method
Returns the metadata associated with key.
Implementation
@override
Future<AtMetaData?> getMeta(String key) async {
try {
return (await get(key))?.metaData;
} on KeyNotFoundException {
return null;
}
}
Returns the metadata associated with key.
@override
Future<AtMetaData?> getMeta(String key) async {
try {
return (await get(key))?.metaData;
} on KeyNotFoundException {
return null;
}
}