SignResponse.fromJson constructor

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

Implementation

SignResponse.fromJson(Map<String, dynamic> json)
    : success = json['success'],
      result = json['result'],
      error = json['error'];