get method

Future<int> get()

Implementation

Future<int> get() async {
  return await _lock.synchronized(() async {
    return _value;
  });
}