systemDetails method
Get system details (Enterprise only)
Implementation
Future<Map<String, dynamic>> systemDetails() async {
_requireEnterprise();
final endpoint = '$baseUrl/system_details';
return await _post(endpoint, data: {'key': client.key});
}