runFormula method

Future<String> runFormula({
  1. required FormulaRunRequest body,
  2. String? authorization,
  3. String? userAgent,
})

Run a formula

Allows running a formula via an API call. Use this method in custom code to get the value back of a formula without a discrete field on a record.

Implementation

Future<String> runFormula({
  required FormulaRunRequest body,
  String? authorization, String? userAgent }) async {
  return _formulaService.runFormula(body: body, authorization: authorization, userAgent: userAgent);
}