updatedAt property

DateTime? updatedAt

Time the End-User's information was last updated.

Implementation

DateTime? get updatedAt => this['updated_at'] == null
    ? null
    : DateTime.fromMillisecondsSinceEpoch(this['updated_at'] * 1000);