save static method

dynamic save(
  1. dynamic k,
  2. dynamic v
)

Implementation

static save(k, v) {
  _prefs?.setString(k, v);
}