initialize method

Future<void> initialize(
  1. String projectId
)

Initialize PointSDK with projectId. You can find your projectId on Bluedot Canvas portal.

If the initialization is successful, error will be returned as nil. Otherwise, an error will be provided.

Implementation

Future<void> initialize(String projectId) {
  return BluedotPointSdkPlatform.instance.initialize(projectId);
}