allValues property

  1. @override
Future<List<Tuple2<ValueWithType, ValueWithType>>> allValues
inherited

Gets (reloads if applicable) all values associated with this server Implementations are allowed to set certain large values to 'null' to allow lazy loading using get

Implementation

@override
Future<List<Tuple2<ValueWithType, ValueWithType>>> get allValues =>
    values.then(
      (values) => values
          .map(
            (e) => Tuple2(
              ValueWithType(StorageType.string, e.key),
              ValueWithType(StorageType.string, e.value),
            ),
          )
          .toList(growable: false),
    );