notEqualsName method

bool notEqualsName(
  1. String n
)

Checks if this Record DOES NOT equal given name

Implementation

bool notEqualsName(String n) => this.name.toLowerCase() != n.toLowerCase();