compose abstract method

UIPayload? compose(
  1. A? a,
  2. B? b
)

Combines two payloads into a single payload. Returns null if both inputs are null.

Implementation

UIPayload? compose(A? a, B? b);