AgentNotification constructor

AgentNotification({
  1. required String method,
  2. Object? params,
})

Implementation

AgentNotification({required this.method, Object? params})
  : params = params == null ? null : deepFreezeAcpJson(params!)!;