findById abstract method

Future<T?> findById(
  1. ID id
)

Retrieves a single record of entity type T matching id, or null if not found.

Implementation

Future<T?> findById(ID id);