stockReceived property

num get stockReceived

Implementation

num get stockReceived => _getQuantityCount(
      stockModels.where((e) =>
          e.transactionType == TransactionType.received.toValue() &&
          e.transactionReason == TransactionReason.received.toValue()),
    );