isEmpty property

bool get isEmpty

Implementation

bool get isEmpty =>
    leftQuote == null ||
    rightQuote == null ||
    leftQuote!.isEmpty ||
    rightQuote!.isEmpty;