code property

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

EmailAddressAuthentication get code {
  try {
    if (rawData["code"] is Map == false) {
      return EmailAddressAuthentication({});
    }
    return EmailAddressAuthentication(rawData["code"] as Map);
  } catch (e) {
    return EmailAddressAuthentication({});
  }
}
set code (EmailAddressAuthentication value)

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set code(EmailAddressAuthentication value) {
  rawData["code"] = value.toJson();
}