getData method

Map<String, dynamic> getData()

Return all the event info in the form to pass down to the native layer.

Implementation

Map<String, dynamic> getData() {
  return {
    "name": _eventName,
    "data": _eventData,
    "iosAppStoreReceiptBase64String": _iosAppStoreReceiptBase64String,
    "androidGooglePlayReceiptData": _androidGooglePlayReceiptData,
    "androidGooglePlayReceiptSignature": _androidGooglePlayReceiptSignature,
  };
}