CompleteElicitationNotification constructor

CompleteElicitationNotification({
  1. required ElicitationId elicitationId,
  2. AcpJsonMap? meta,
})

Implementation

CompleteElicitationNotification({
  required this.elicitationId,
  AcpJsonMap? meta,
}) : meta = meta == null ? null : deepFreezeAcpJsonMap(meta!);