IdentifierWithSearchKey constructor
IdentifierWithSearchKey({
- Int64? id,
- 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;
}