Name constructor

Name(
  1. String _name,
  2. int _changedToAt
)

Create a Name from a name String and a int value representing the unix timestamp at which the name was switched to.

Implementation

Name(this._name, this._changedToAt);