toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
    "id": id,
    "walletProfileId": walletProfileId,
    "walletTypeId": walletTypeId,
    "walletType": walletType.toJson(),
    "entityId": entityId,
    "currentBal": currentBal,
    "availableBal": availableBal,
    "reserveBal": reserveBal,
    "walletName": walletName,
    "walletDesc": walletDesc,
    "currency": currency,
    "lienAmount": lienAmount,
};