lang method

AppBuilder lang(
  1. String value
)

Sets the lang attribute on the <html> element. Defaults to 'en'.

Implementation

AppBuilder lang(String value) {
  _lang = value;
  return this;
}