UGoldWalletEntryResponse.fromMap constructor

UGoldWalletEntryResponse.fromMap(
  1. Map<String, dynamic> json
)

Implementation

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