isBefore3Days property

bool isBefore3Days

Implementation

bool get isBefore3Days => isBefore(
      DateTime.now().subtract(
        const Duration(days: 3),
      ),
    );