ClientNotification constructor

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

Implementation

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