Sports You Watch Headless Functions
Fetch a Sports You Watch matchup
getMatchup(matchupId, onResult)
getMatchup(matchupId, onResult)LucraClient().getMatchup(matchupId = "syw-2024-001") { result ->
when (result) {
is GetMatchupResult.Success -> {
Log.d("Lucra SDK", "Fetched matchup: ${result.matchup.id}")
}
is GetMatchupResult.Failure -> {
Log.w("Lucra SDK", "Failed to load matchup: ${result.failure}")
}
}
}Last updated
