get<E> method

  1. @override
E? get<E>([
  1. GetFromSubStorage<E>? func
])

Obtains the instance of given type E.

If there is no instance for type, then null will be returned.

Implementation

@override
E? get<E>([GetFromSubStorage<E>? func]) => _get<E>(data, func);