initialize method

Future<void> initialize()

You should call this method before calling all other methods.

Implementation

Future<void> initialize() async {
  try {
    return await _methodChannel.invokeMethod<void>(
      _MethodConstants.INITIALIZE,
      <String, dynamic>{},
    );
  } catch (e) {
    throw AGConnectCloudDBException._from(e);
  }
}