RegisterModel constructor

RegisterModel({
  1. String? userJid,
  2. Data? data,
  3. bool? isNewUser,
  4. String? message,
})

Initializes a new instance of the RegisterModel class.

Implementation

RegisterModel({
  this.userJid,
  this.data,
  this.isNewUser,
  this.message,
});