copyWithSelf method

JSNotification copyWithSelf(
  1. JSNotification other
)

Implementation

JSNotification copyWithSelf(JSNotification other) {
  return JSNotification(
    other.title,
    other.options,
  );
}