setFactory static method

void setFactory(
  1. String type,
  2. MetaFactory factory
)

Set the Meta factory for the specified type.

Implementation

static void setFactory(String type, MetaFactory factory) {
  final helper = sharedAccountExtensions.metaHelper;
  helper!.setMetaFactory(type, factory);
}