getTitle static method

TitleRecord? getTitle(
  1. String id
)

Retrieves the TitleRecord with the specified ID, or null if the record is not found.

Use this method to retrieve the metadata associated with an asset identified by its TitleRecord ID.

  • Parameters
  • id: The ID of the TitleRecord to retrieve.

Implementation

static TitleRecord? getTitle(String id) {
  _throwIfNotInitialized();
  return instance._core!.getTitle(id);
}