metadata method

Future<Metadata?> metadata()

Fetches the metadata associated with the authenticated user.

Returns: A Future<Metadata> containing the metadata for the user.

Throws: PassageError if an error occurs during the retrieval process.

Implementation

Future<Metadata?> metadata() {
  return PassageFlutterPlatform.instance.metaData();
}