setNonceApple static method

void setNonceApple(
  1. String nonce
)

Implementation

static void setNonceApple(String nonce) async {
  SharedPreferences pref = await SharedPreferences.getInstance();
  await pref.setString(nonceApple, nonce);
}