setActiveTeam method
Set active team
Implementation
Future<bool> setActiveTeam({String? teamId}) async {
try {
final result = await _client.setActiveTeam(teamId: teamId);
return result.isSuccess;
} catch (e) {
if (kDebugMode) {
print('Error setting active team: $e');
}
return false;
}
}