isEmpty property

bool isEmpty

Implementation

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