AngelAuthResult.fromJson constructor

AngelAuthResult.fromJson(
  1. String s
)

Attempts to deserialize a response from a String.

Implementation

factory AngelAuthResult.fromJson(String s) =>
    AngelAuthResult.fromMap(json.decode(s) as Map?);