getCurrentValueFromCtx method

dynamic getCurrentValueFromCtx(
  1. String targetKey
)

Implementation

dynamic getCurrentValueFromCtx(String targetKey) {
  if (targetKey == FS_USERS) {
    return userId;
  } else {
    return currentContext[targetKey];
  }
}