/// Config base class abstract class Config { /// Get config value Future get(); /// Set config value Future set(T value); /// Remove config value Future remove(); }