setEmployeeId method

Future<void> setEmployeeId(
  1. String id
)

Implementation

Future<void> setEmployeeId(String id) async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.setString("icEmployeeId", id);
}