import 'package:dartz/dartz.dart'; extension EitherX on Either { R asRight() => (this as Right).value; L asLeft() => (this as Left).value; }