Modifier to copy the modifiers and default value from the parameter specified in the overriden function.
e.g.
class Interval {
public construct(this DateTime start = null, this DateTime end = null) {}
}
class BoundlessInterval extends Interval {
public construct(super DateTime start, super DateTime end) {}
}
Where the BoundlessInterval constructor is equivalent to:
class BoundlessInterval extends Interval {
public construct(this DateTime start = null, this DateTime end = null) {}
}
Modifier to copy the modifiers and default value from the parameter specified in the overriden function.
e.g.
Where the BoundlessInterval constructor is equivalent to: