setConfig method

void setConfig(
  1. LiquidConfig? config
)

Sets the LiquidConfig for this environment.

This is automatically called by LiquidTemplate when rendering. You typically don't need to call this directly.

Implementation

void setConfig(LiquidConfig? config) {
  _config = config;
}