call method

String? call(
  1. String? mac
)

Valid — returns null — if mac is a non-blank, well-formed MAC Address; otherwise, returns the blank error message if mac is null, or the malformed error message if mac is malformed.

Implementation

String? call(String? mac) => _reqMacAddr(mac);