|
|
@@ -12,7 +12,6 @@ class MethodChannelGravityEngine extends GravityEnginePlatform {
|
|
|
final methodChannel = const MethodChannel('gravity_engine');
|
|
|
|
|
|
/// Initializes the Gravity Engine SDK.
|
|
|
- /// Returns `true` if the user is attributed, `false` otherwise.
|
|
|
@override
|
|
|
Future<String> initialize(String appId, String accessToken, String clientId,
|
|
|
String channel, bool debug) async {
|
|
|
@@ -26,7 +25,7 @@ class MethodChannelGravityEngine extends GravityEnginePlatform {
|
|
|
'channel': channel,
|
|
|
},
|
|
|
);
|
|
|
- return result ?? false;
|
|
|
+ return result ?? '';
|
|
|
}
|
|
|
|
|
|
@override
|