byTagCodeFilter method

HealthcareElementFilter byTagCodeFilter({
  1. String? tagType = null,
  2. String? tagCode = null,
  3. String? codeType = null,
  4. String? codeNumber = null,
  5. int? status = null,
})

Implementation

HealthcareElementFilter byTagCodeFilter(
    {String? tagType = null, String? tagCode = null, String? codeType = null, String? codeNumber = null, int? status = null}) {
  this._byTagCodeFilter =
      HealthcareElementByHcPartyTagCodeFilter(tagType: tagType, tagCode: tagCode, codeType: codeType, codeNumber: codeNumber, status: status);
  return this;
}