getRecipient method

String getRecipient()

Implementation

String getRecipient() {
  return maybeMap(
    orElse: () => '',
    fiatDeposit: (value) => value.to,
    send: (value) => value.to,
    receive: (value) => value.to,
  );
}