CreateAccountAuthorization.fromJson constructor

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

Implementation

factory CreateAccountAuthorization.fromJson(Map<String, dynamic> json) {
  return CreateAccountAuthorization(
      hezEthereumAddress: json['hezEthereumAddress'],
      bjj: json['bjj'],
      signature: json['signature'],
      timestamp: json['timestamp']);
}