WalletIdentityData.fromJson constructor

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

Implementation

factory WalletIdentityData.fromJson(Map<String, dynamic> json) {
  return WalletIdentityData(
      polkadot: json['polkadot'], subsocial: json['subsocial']);
}