Set_ESIGN_DOC_ID method

Future<void> Set_ESIGN_DOC_ID(
  1. String docID
)

Implementation

Future<void> Set_ESIGN_DOC_ID(String docID) async{
  SharedPreferences prefs = await SharedPreferences.getInstance();
  prefs.setString(DOC_ID_ESIGN_KEY,docID);
  print("Your DOC ID is :"+docID);
}