collectResearchPoints method Null safety
collect research points
Implementation
Future<void> collectResearchPoints() async {
confirmInitialized();
return await client.post(
MCP(profileId, accountId: client.accountId).ClaimCollectedResources,
body: {
"collectorsToClaim": [
items
.firstWhere((i) =>
i.templateId == "Token:collectionresource_nodegatetoken01")
.id,
],
},
);
}