toJson method

Map<String, dynamic> toJson()

Allows you to serialize object.

Implementation

Map<String, dynamic> toJson() {
  Map<String, dynamic> result = {};

  if (paIgnoreNotificationCodes != null)
    result["paIgnoreNotificationCodes"] = paIgnoreNotificationCodes;

  return result;
}