AuthFailureMessage.fromJson constructor

AuthFailureMessage.fromJson(
  1. Map<String, dynamic> json
)

Implementation

AuthFailureMessage.fromJson(Map<String, dynamic> json) {
  jsonrpc = json['jsonrpc'];
  id = json['id'];
  error = json['error'] != null ? Error.fromJson(json['error']) : null;
}