IdentifierWithSearchKey constructor

IdentifierWithSearchKey({
  1. Int64? id,
  2. String? searchKey,
})

Implementation

factory IdentifierWithSearchKey({
  $fixnum.Int64? id,
  $core.String? searchKey,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (searchKey != null) result.searchKey = searchKey;
  return result;
}