getDateValue method

DateTime? getDateValue()

Implementation

DateTime? getDateValue() {
  if (type == BatchUserAttributeType.date) {
    return value;
  }
  return null;
}