AuthenticateResult.fromJson constructor

AuthenticateResult.fromJson(
  1. 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'];
}