Flow.apex

  • Docs
  • Tutorials
Docs Menu
  • Flows
  • Flow Methods
    • Creation Methods
    • Function Methods
    • Block Methods
    • Static Methods
  • FlowScript

Flow Methods Guide

Flow Methods

Flow Method Reference

Here is the reference for Flow.apex.

Flow f = new Flow()
    .inputAs('a', 'b').returnInteger()
    .var('num = a + b')
    .doReturn('num');

Object result = f.run(1, 2);

Contribute on Github! Edit this section.