getMeta method

  1. @override
Future<AtMetaData?> getMeta(
  1. String key
)
override

Returns the metadata associated with key.

Implementation

@override
Future<AtMetaData?> getMeta(String key) async {
  try {
    return (await get(key))?.metaData;
  } on KeyNotFoundException {
    return null;
  }
}