matexForexProfitAndLossValidators top-level property

List<MatexStateValidator> matexForexProfitAndLossValidators
final

Implementation

final List<MatexStateValidator> matexForexProfitAndLossValidators = [
  (MatexBaseCoreState state) =>
      state.baseCode != null &&
      state.baseCode!.isNotEmpty &&
      state.counterCode != null &&
      state.counterCode!.isNotEmpty &&
      state.accountCode != null &&
      state.accountCode!.isNotEmpty,
  ...profitAndLossValidators,
];