Query$checkWalletAndReputation$checkWalletAndReputation$wallet$coin.fromJson constructor
Query$checkWalletAndReputation$checkWalletAndReputation$wallet$coin.fromJson()
Implementation
factory Query$checkWalletAndReputation$checkWalletAndReputation$wallet$coin.fromJson(
Map<String, dynamic> json) {
final l$name = json['name'];
final l$picture = json['picture'];
final l$unitValue = json['unitValue'];
return Query$checkWalletAndReputation$checkWalletAndReputation$wallet$coin(
name: (l$name as String),
picture: l$picture == null
? null
: Query$checkWalletAndReputation$checkWalletAndReputation$wallet$coin$picture
.fromJson((l$picture as Map<String, dynamic>)),
unitValue: l$unitValue == null
? null
: Query$checkWalletAndReputation$checkWalletAndReputation$wallet$coin$unitValue
.fromJson((l$unitValue as Map<String, dynamic>)),
);
}