dimeGetWithTag<T> function

T dimeGetWithTag<T>(
  1. String tag
)

Fetches a value and returns it base on T type and instance identifier tag.

Implementation

T dimeGetWithTag<T>(String tag) {
  return dimeGet(tag: tag);
}