xor method

Future<Option<T>> xor(
  1. Option<T> other
)

Implementation

@pragma("vm:prefer-inline")
Future<Option<T>> xor(Option<T> other) {
  return then((option) => option.xor(other));
}