InputHistoryItem constructor

InputHistoryItem(
  1. String text
)

Implementation

InputHistoryItem(String text) {
  this.text = text;
  this.createdTime = DateTime.now().millisecondsSinceEpoch;
  this.pinnedTime = 0;
}