toJsonForStorage method
Implementation
Map<String, Object?> toJsonForStorage() {
return {
'id': id,
'walletId': walletId,
'changeAmount': changeAmount,
'unit': unit,
'walletType': walletType.toString(),
'state': state.value,
'completionMsg': completionMsg,
'transactionDate': transactionDate,
'initiatedDate': initiatedDate,
'metadata': metadata,
};
}