createKeyWordFlutterPCInstance function
Creates and returns a new KeyWordFlutterPC instance with the provided
instanceId
and optional isSticky
value.
This is a convenience function to avoid having to import
KeyWordFlutterPC
everywhere in your code.
Implementation
KeyWordFlutterPC createKeyWordFlutterPCInstance(
String instanceId, {
bool isSticky = false,
}) {
return KeyWordFlutterPC(instanceId, isSticky: isSticky);
}