convert method

  1. @override
Future<Result<Null, String>> convert(
  1. RoutineOrder<ImageMedium> order
)
override

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

@override
Future<Result<Null, String>> convert(RoutineOrder<ImageMedium> order) async {
  throw UnimplementedError();
}