ChannelParams constructor

ChannelParams(
  1. dynamic args
)

Implementation

ChannelParams(args) {
  key = args['key'] as int;
  id = args['id'] as int;
  method = args['method'] as String;
  callback = args['callback'] as String;
  extras = args['extras'] as Map? ?? {};
}