MBInAppMessageSavingUtility class

Utility class to convert in app messages to JSON and initialize a message from a JSON

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

inAppMessageFromJsonDictionary(Map<String, dynamic> jsonDictionary) → MBInAppMessage
Creates and initializes an in app message object from a JSON object. @param jsonDictionary The dictionary from the JSON. @returns The in app message created.
jsonDictionaryForInAppMessage(MBInAppMessage inAppMessage) Map<String, dynamic>
Converts an in app message to a JSON dictionary @param inAppMessage The in app message to convert. @returns The Map that represent the in app message.