submitDeviceIntelligence method

  1. @override
Future<String> submitDeviceIntelligence(
  1. String clientId,
  2. String txnId,
  3. String userId, {
  4. String env = "Production",
})
override

Implementation

@override
Future<String> submitDeviceIntelligence(
    String clientId, String txnId, String userId,
    {String env = "Production"}) async {
  var data = {
    "clientId": clientId,
    "txnId": txnId,
    "userId": userId,
    "env": env
  };
  final String status;
  status = await _channel.invokeMethod('submitDeviceIntelligence', data);

  return status;
}