InputHistoryItem.lock constructor

InputHistoryItem.lock(
  1. String text
)

Implementation

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