SingleChildTextElement constructor

SingleChildTextElement(
  1. int serial,
  2. EnumSpWMLElementType type,
  3. Map<String, String> params,
  4. SpWMLParamsWrapper spwmlParams,
  5. int parentSerial,
  6. int lineStart,
  7. int lineEnd,
  8. SpWMLFontStyle style,
  9. SpWMLInfo? info,
  10. BlockElementChild child,
  11. TextParamsWrapper textParams,
)
  • serial : Array Index.
  • type : Element type.
  • params : Element parameters.
  • spwmlParams : The spwml element parameters.
  • parentSerial : Parent Element serial.
  • lineStart : line info for the Error handling.
  • lineEnd : line info for the Error handling.
  • style : Font styles.
  • info : SpWML info.
  • child : This element child.
  • textParams : Parent class parameters.

Throws SpWMLException : ParamException.

Throws SpWMLException : ParamValueException.

Implementation

SingleChildTextElement(
    int serial,
    EnumSpWMLElementType type,
    Map<String, String> params,
    SpWMLParamsWrapper spwmlParams,
    int parentSerial,
    int lineStart,
    int lineEnd,
    SpWMLFontStyle style,
    SpWMLInfo? info,
    this.child,
    TextParamsWrapper textParams)
    : super(serial, type, params, spwmlParams, parentSerial, lineStart,
          lineEnd, style, info, textParams);