Duration constructor

Duration({
  1. double? value,
  2. CodeStub? unit,
})

Implementation

Duration({
		double? value,
		CodeStub? unit
	}) : value = value ?? null,
	unit = unit ?? null;