convert abstract method

Future<Result<Null, String>> convert(
  1. RoutineOrder<E> order
)

the definition of the result type simply relies on the isGood and isBad methods within the result instance itself. the string will still hold a permanent value of what happened

Implementation

Future<Result<Null, String>> convert(RoutineOrder<E> order);