AuthenticateResult.fromJson constructor
AuthenticateResult.fromJson(
- dynamic json
Creates an AuthenticateResult instance from a JSON map.
Expects the keys: 'challenge' and 'signature'.
Implementation
AuthenticateResult.fromJson(dynamic json) {
challenge = json['challenge'];
signature = json['signature'];
}