get method

  1. @override
JsonRpcRecord? get(
  1. int key
)
override

Implementation

@override
JsonRpcRecord? get(int key) {
  _checkInitialized();
  if (history.containsKey(key.toString())) {
    return JsonRpcRecord.fromJson(history[key.toString()]!);
  }
  return null;
}