isEmpty property

bool get isEmpty

Checks if this ID is empty ie it contains no values

Implementation

bool get isEmpty =>
    name == null &&
    version == null &&
    os == null &&
    osVersion == null &&
    vendor == null &&
    supportUrl == null &&
    address == null &&
    date == null &&
    command == null &&
    arguments == null &&
    environment == null &&
    nonStandardFields.isEmpty;