InkListItem.fullName constructor

InkListItem.fullName(
  1. String fullName
)
Create an item from a dot-separted string of the form "listDefinitionName.listItemName".

Implementation

factory InkListItem.fullName(String fullName) {
  var nameParts = fullName.split('.');
  return InkListItem(originName: nameParts[0], itemName: nameParts[1]);
}