matexPipDeltaValidators top-level property

List<MatexStateValidator> matexPipDeltaValidators
final

Implementation

final List<MatexStateValidator> matexPipDeltaValidators = [
  (MatexBaseCoreState state) {
    return state.baseCode != null &&
        state.baseCode!.isNotEmpty &&
        state.counterCode != null &&
        state.counterCode!.isNotEmpty;
  },
  ...pipDeltaValidators,
];