get method

Future<T> get(
  1. String id
)

Performs repository.get().

Implementation

Future<T> get(String id) async {
  final Model raw = await repository.get(id);
  return fromModelFactory(raw);
}