verify method

bool verify(
  1. String expectedModuleId
)

Verify if the token matches the expected module ID

Implementation

bool verify(String expectedModuleId) {
  return moduleId == expectedModuleId;
}