formByInstaceAndName static method

FormStackForm? formByInstaceAndName({
  1. String name = "default",
  2. String formName = "default",
})

Get the purticular from from different instance.

Implementation

static FormStackForm? formByInstaceAndName(
    {String name = "default", String formName = "default"}) {
  return api(name: name)._forms[formName];
}