Credentials.fromJSON constructor

Credentials.fromJSON(
  1. String jstr
)

Implementation

factory Credentials.fromJSON(String jstr) {
  return Credentials.fromMap(json.decode(jstr));
}