Maps the success value asynchronously.
Future<Result<R>> mapAsync<R>(R Function(T) transform) async { final result = await this; return result.map(transform); }