matchByName method

  1. @override
bool matchByName(
  1. String name
)
inherited

Returns true if the shells name matches the passed name. The comparison is case insensitive.

Implementation

@override
bool matchByName(String name) => this.name == name.toLowerCase();