IAMCrediental.fromMap constructor

IAMCrediental.fromMap(
  1. LinkedHashMap<Object?, Object?> map
)

Implementation

IAMCrediental.fromMap(LinkedHashMap<Object?, Object?> map) {

  if (map["secretKey"] != null) {
    secretKey = map["secretKey"].toString();
  }
  if (map["secretId"] != null) {
    secretId =map["secretId"].toString();
  }
  if (map["identity"] != null) {
    identity = map["identity"].toString();
  }
}