Which built-in dispatcher will you use with this task?
class SomeViewModel : ViewModel() {
suspend fun countSpaces(file: File): Int =
withContext(______________) {
file.useLines { it.map { it.count { it == ' ' } } }
}
}