MobPushCustomMessage.fromJson constructor

MobPushCustomMessage.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory MobPushCustomMessage.fromJson(Map<String, dynamic> json) {
	return MobPushCustomMessage(json['content'], json['messageId'], json['timeStamp'], json['extrasMap']);
}