UGoldWalletEntryResponse.fromMap constructor
Implementation
factory UGoldWalletEntryResponse.fromMap(Map<String, dynamic> json) => UGoldWalletEntryResponse(
asset: json["asset"],
amount: json["amount"] == null ? null : (json["amount"] as num).toDouble(),
);