SingleWalletVolume.fromJson constructor
Implementation
factory SingleWalletVolume.fromJson(Map<String, dynamic> json) {
return SingleWalletVolume(
walletAddress: json.valueAsString<String?>(
'wallet_address',
acceptCamelCase: true,
),
volume: json.valueAsString<String?>('volume', acceptCamelCase: true),
);
}