rpmtw_api_client

Creator: coderz1093

Last updated:

0 purchases

rpmtw_api_client Image
rpmtw_api_client Images
Add to Cart

Description:

rpmtw api client

RPMTW API Client (Dart) #
Install #
dart pub add rpmtw_api_client
copied to clipboard
Example #
import 'package:rpmtw_api_client/rpmtw_api_client.dart';

void main() async {
RPMTWApiClient.init(); // Initialize RPMTW API Client
RPMTWApiClient apiClient = RPMTWApiClient.instance;
print(apiClient.apiBaseUrl);

// Valid password
PasswordValidatedResult result =
await apiClient.authResource.validPassword('12345');
print(result.message);

// Print hello world
String message = await apiClient.otherResource.helloWorld();
print(message);

// Get client's IP address
String ip = await apiClient.otherResource.getIP();
print(ip);

// Search for mods
ListModelResponse modsResponse =
await apiClient.minecraftResource.search(limit: 5);
print(modsResponse.data);
print(modsResponse.limit);
print(modsResponse.skip);
print(modsResponse.total);
}
copied to clipboard
Links #
Docs
Other Language #
Kotlin

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator