buildFormFromJson method

Future<FormStack> buildFormFromJson(
  1. Map<String, dynamic>? body, {
  2. MapKey? mapKey,
  3. LocationWrapper? initialLocation,
})

Build the from from Map (JSON)

Implementation

Future<FormStack> buildFormFromJson(Map<String, dynamic>? body,
    {MapKey? mapKey, LocationWrapper? initialLocation}) async {
  ParserUtils.buildFormFromJson(this, body, mapKey ?? MapKey("", "", ""),
      initialLocation ?? LocationWrapper(0, 0));
  return this;
}