getModificationDate method

DateTime getModificationDate(
  1. int index
)
Get modification date of a specific property. Zero-based property index

Implementation

DateTime getModificationDate(int index) {
  if (index < _modificationDates.length)
    return _modificationDates[index];
  else
    return new DateTime(0);
}