platformContractForHandler method

PixaPlatformContract? platformContractForHandler(
  1. String handlerId
)

Returns the platform contract for handlerId, if any.

Implementation

PixaPlatformContract? platformContractForHandler(String handlerId) {
  return _platformContracts[handlerId.trim()];
}