publish method

Future<RespType> publish(
  1. String channel,
  2. Object message
)

Implementation

Future<RespType> publish(String channel, Object message) async {
  return tier0.execute([
    'PUBLISH',
    channel,
    message,
  ]);
}