setFcmRegId static method

dynamic setFcmRegId(
  1. String value
)

Implementation

static setFcmRegId(String value) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  prefs.setString("FCM_REG_ID", value);
}