wakeTime property

int? wakeTime

Returns the value of the wakeTime field. Returns null if the field is not defined in the message.

Implementation

int? get wakeTime {
  final field = getField(UserProfileWakeTimeField.ID);
  if (field != null && field.isValid()) {
    var subField = field.getValidSubField(fields);
    return field.getValue(subField: subField);
  } else {
    return null;
  }
}
void wakeTime=(int? value)

Sets the wakeTime field with value. Throws FieldNotDefinedError if the field is not defined in the message.

Implementation

set wakeTime(int? value) {
  final field = getField(UserProfileWakeTimeField.ID);

  if (field != null) {
    if (value == null) {
      field.clear();
    } else {
      var subField = field.getValidSubField(fields);
      field.setValue(0, value, subField);
    }
  } else {
    throw FieldNotDefinedError(field!.name);
  }
}