SessionWarningResponse constructor

SessionWarningResponse({
  1. required String code,
  2. DateTime? time,
  3. required String warning,
})

Returns a new SessionWarningResponse instance.

Implementation

SessionWarningResponse({
  required this.code,
  this.time,
  required this.warning,
});