toJsonForStorage method

Map<String, Object?> toJsonForStorage()

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,
  };
}