configure static method
Configures the SDK with the app ID.
This is a mandatory method before using any other features.
@param appID An identifier unique to your app.
Implementation
static Future<void> configure(String appID) {
Future<void> configureFuture = DevRevSDKPlatform.instance.configure(appID);
_isConfigured = true;
return configureFuture;
}