custom static method

Formula custom(
  1. String formula
)

Helps to initiate a custom formula

var my_custom_formula = Formula.custom('=SUM(1,2)');

Implementation

static Formula custom(String formula) {
  return Formula._(formula);
}