getTransaction<T> method

T? getTransaction<T>(
  1. Type type,
  2. String id
)

Implementation

T? getTransaction<T>(Type type, String id) {
  String key = _buildKey(type, id);
  return transactions[key] as T?;
}