should_send_email property

bool? get should_send_email

Implementation

bool? get should_send_email {
  try {
    if (rawData["should_send_email"] is bool == false) {
      return null;
    }
    return rawData["should_send_email"] as bool;
  } catch (e) {
    return null;
  }
}
set should_send_email (bool? value)

Implementation

set should_send_email(bool? value) {
  rawData["should_send_email"] = value;
}