checkSpeed method
Implementation
@override
Future<Either<ErrorItem, ConnectivityModel>> checkSpeed() async {
final Either<ErrorItem, Map<String, dynamic>> res =
await _gateway.checkSpeed();
return flatMap(res);
}
@override
Future<Either<ErrorItem, ConnectivityModel>> checkSpeed() async {
final Either<ErrorItem, Map<String, dynamic>> res =
await _gateway.checkSpeed();
return flatMap(res);
}