set method

  1. @protected
NikuTextField set({
  1. TextEditingController? controller,
  2. String initialValue = '',
  3. FocusNode? focusNode,
  4. TextInputType? keyboardType,
  5. TextCapitalization textCapitalization = TextCapitalization.none,
  6. TextInputAction? textInputAction,
  7. TextDirection? textDirection,
  8. TextAlign textAlign = TextAlign.start,
  9. TextAlignVertical? textAlignVertical,
  10. bool autofocus = false,
  11. bool readOnly = false,
  12. ToolbarOptions? toolbarOptions,
  13. bool? showCursor,
  14. String obscuringCharacter = '•',
  15. bool obscureText = false,
  16. bool autocorrect = true,
  17. SmartDashesType? smartDashesType,
  18. SmartQuotesType? smartQuotesType,
  19. bool enableSuggestions = true,
  20. int maxLines = 1,
  21. int? minLines,
  22. bool expands = false,
  23. int? maxLength,
  24. ValueChanged<String>? onChanged,
  25. GestureTapCallback? onTap,
  26. VoidCallback? onEditingComplete,
  27. ValueChanged<String>? onFieldSubmitted,
  28. FormFieldSetter<String>? onSaved,
  29. FormFieldValidator<String>? validator,
  30. List<TextInputFormatter>? inputFormatters,
  31. bool? enabled,
  32. double cursorWidth = 2.0,
  33. double? cursorHeight,
  34. Radius? cursorRadius,
  35. Color? cursorColor,
  36. Brightness? keyboardAppearance,
  37. EdgeInsets scrollPadding = const EdgeInsets.all(20.0),
  38. bool enableInteractiveSelection = true,
  39. InputCounterWidgetBuilder? buildCounter,
  40. ScrollPhysics? scrollPhysics,
  41. Iterable<String>? autofillHints,
  42. AutovalidateMode? autovalidateMode,
  43. Widget? input_icon,
  44. String input_labelText = '',
  45. String? input_helperText,
  46. int? input_helperMaxLines,
  47. String? input_hintText,
  48. int? input_hintMaxLines,
  49. String? input_errorText,
  50. int? input_errorMaxLines,
  51. FloatingLabelBehavior input_floatingLabelBehavior = FloatingLabelBehavior.auto,
  52. bool input_isCollapsed = false,
  53. bool? input_isDense,
  54. EdgeInsetsGeometry? input_contentPadding,
  55. Widget? input_prefixIcon,
  56. BoxConstraints? input_prefixIconConstraints,
  57. Widget? input_prefix,
  58. String? input_prefixText,
  59. Widget? input_suffixIcon,
  60. Widget? input_suffix,
  61. String? input_suffixText,
  62. BoxConstraints? input_suffixIconConstraints,
  63. Widget? input_counter,
  64. String? input_counterText,
  65. bool? input_filled,
  66. Color? input_fillColor,
  67. Color? input_focusColor,
  68. Color? input_hoverColor,
  69. InputBorder? input_errorBorder,
  70. InputBorder? input_focusedBorder,
  71. InputBorder? input_focusedErrorBorder,
  72. InputBorder? input_disabledBorder,
  73. InputBorder? input_enabledBorder,
  74. InputBorder? input_border,
  75. bool input_decorationEnabled = true,
  76. String? input_semanticCounterText,
  77. bool? input_alignLabelWithHint,
  78. Color? base_color,
  79. Color? base_backgroundColor,
  80. double? base_fontSize,
  81. FontWeight? base_fontWeight,
  82. FontStyle? base_fontStyle,
  83. double? base_letterSpacing,
  84. double? base_wordSpacing,
  85. double? base_height,
  86. Paint? base_foreground,
  87. Paint? base_background,
  88. List<Shadow>? base_shadows,
  89. List<FontFeature>? base_fontFeatures,
  90. TextDecoration? base_textDecoration,
  91. Color? base_textDecorationColor,
  92. double? base_textDecorationThickness,
  93. String? base_fontFamily,
  94. List<String>? base_fontFamilyFallback,
  95. TextBaseline? base_textBaseline,
  96. Color? label_color,
  97. Color? label_backgroundColor,
  98. double? label_fontSize,
  99. FontWeight? label_fontWeight,
  100. FontStyle? label_fontStyle,
  101. double? label_letterSpacing,
  102. double? label_wordSpacing,
  103. double? label_height,
  104. Paint? label_foreground,
  105. Paint? label_background,
  106. List<Shadow>? label_shadows,
  107. List<FontFeature>? label_fontFeatures,
  108. TextDecoration? label_textDecoration,
  109. Color? label_textDecorationColor,
  110. double? label_textDecorationThickness,
  111. String? label_fontFamily,
  112. List<String>? label_fontFamilyFallback,
  113. TextBaseline? label_textBaseline,
  114. Color? hint_color,
  115. Color? hint_backgroundColor,
  116. double? hint_fontSize,
  117. FontWeight? hint_fontWeight,
  118. FontStyle? hint_fontStyle,
  119. double? hint_letterSpacing,
  120. double? hint_wordSpacing,
  121. double? hint_height,
  122. Paint? hint_foreground,
  123. Paint? hint_background,
  124. List<Shadow>? hint_shadows,
  125. List<FontFeature>? hint_fontFeatures,
  126. TextDecoration? hint_textDecoration,
  127. Color? hint_textDecorationColor,
  128. double? hint_textDecorationThickness,
  129. String? hint_fontFamily,
  130. List<String>? hint_fontFamilyFallback,
  131. TextBaseline? hint_textBaseline,
  132. Color? helper_color,
  133. Color? helper_backgroundColor,
  134. double? helper_fontSize,
  135. FontWeight? helper_fontWeight,
  136. FontStyle? helper_fontStyle,
  137. double? helper_letterSpacing,
  138. double? helper_wordSpacing,
  139. double? helper_height,
  140. Paint? helper_foreground,
  141. Paint? helper_background,
  142. List<Shadow>? helper_shadows,
  143. List<FontFeature>? helper_fontFeatures,
  144. TextDecoration? helper_textDecoration,
  145. Color? helper_textDecorationColor,
  146. double? helper_textDecorationThickness,
  147. String? helper_fontFamily,
  148. List<String>? helper_fontFamilyFallback,
  149. TextBaseline? helper_textBaseline,
  150. Color? error_color,
  151. Color? error_backgroundColor,
  152. double? error_fontSize,
  153. FontWeight? error_fontWeight,
  154. FontStyle? error_fontStyle,
  155. double? error_letterSpacing,
  156. double? error_wordSpacing,
  157. double? error_height,
  158. Paint? error_foreground,
  159. Paint? error_background,
  160. List<Shadow>? error_shadows,
  161. List<FontFeature>? error_fontFeatures,
  162. TextDecoration? error_textDecoration,
  163. Color? error_textDecorationColor,
  164. double? error_textDecorationThickness,
  165. String? error_fontFamily,
  166. List<String>? error_fontFamilyFallback,
  167. TextBaseline? error_textBaseline,
  168. Color? prefix_color,
  169. Color? prefix_backgroundColor,
  170. double? prefix_fontSize,
  171. FontWeight? prefix_fontWeight,
  172. FontStyle? prefix_fontStyle,
  173. double? prefix_letterSpacing,
  174. double? prefix_wordSpacing,
  175. double? prefix_height,
  176. Paint? prefix_foreground,
  177. Paint? prefix_background,
  178. List<Shadow>? prefix_shadows,
  179. List<FontFeature>? prefix_fontFeatures,
  180. TextDecoration? prefix_textDecoration,
  181. Color? prefix_textDecorationColor,
  182. double? prefix_textDecorationThickness,
  183. String? prefix_fontFamily,
  184. List<String>? prefix_fontFamilyFallback,
  185. TextBaseline? prefix_textBaseline,
  186. Color? suffix_color,
  187. Color? suffix_backgroundColor,
  188. double? suffix_fontSize,
  189. FontWeight? suffix_fontWeight,
  190. FontStyle? suffix_fontStyle,
  191. double? suffix_letterSpacing,
  192. double? suffix_wordSpacing,
  193. double? suffix_height,
  194. Paint? suffix_foreground,
  195. Paint? suffix_background,
  196. List<Shadow>? suffix_shadows,
  197. List<FontFeature>? suffix_fontFeatures,
  198. TextDecoration? suffix_textDecoration,
  199. Color? suffix_textDecorationColor,
  200. double? suffix_textDecorationThickness,
  201. String? suffix_fontFamily,
  202. List<String>? suffix_fontFamilyFallback,
  203. TextBaseline? suffix_textBaseline,
  204. Color? counter_color,
  205. Color? counter_backgroundColor,
  206. double? counter_fontSize,
  207. FontWeight? counter_fontWeight,
  208. FontStyle? counter_fontStyle,
  209. double? counter_letterSpacing,
  210. double? counter_wordSpacing,
  211. double? counter_height,
  212. Paint? counter_foreground,
  213. Paint? counter_background,
  214. List<Shadow>? counter_shadows,
  215. List<FontFeature>? counter_fontFeatures,
  216. TextDecoration? counter_textDecoration,
  217. Color? counter_textDecorationColor,
  218. double? counter_textDecorationThickness,
  219. String? counter_fontFamily,
  220. List<String>? counter_fontFamilyFallback,
  221. TextBaseline? counter_textBaseline,
  222. double mt = 0,
  223. double ml = 0,
  224. double mb = 0,
  225. double mr = 0,
})

Implementation

@protected
NikuTextField set({
  TextEditingController? controller,
  String initialValue = '',
  FocusNode? focusNode,
  TextInputType? keyboardType,
  TextCapitalization textCapitalization = TextCapitalization.none,
  TextInputAction? textInputAction,
  TextDirection? textDirection,
  TextAlign textAlign = TextAlign.start,
  TextAlignVertical? textAlignVertical,
  bool autofocus = false,
  bool readOnly = false,
  ToolbarOptions? toolbarOptions,
  bool? showCursor,
  String obscuringCharacter = '•',
  bool obscureText = false,
  bool autocorrect = true,
  SmartDashesType? smartDashesType,
  SmartQuotesType? smartQuotesType,
  bool enableSuggestions = true,
  int maxLines = 1,
  int? minLines,
  bool expands = false,
  int? maxLength,
  ValueChanged<String>? onChanged,
  GestureTapCallback? onTap,
  VoidCallback? onEditingComplete,
  ValueChanged<String>? onFieldSubmitted,
  FormFieldSetter<String>? onSaved,
  FormFieldValidator<String>? validator,
  List<TextInputFormatter>? inputFormatters,
  bool? enabled,
  double cursorWidth = 2.0,
  double? cursorHeight,
  Radius? cursorRadius,
  Color? cursorColor,
  Brightness? keyboardAppearance,
  EdgeInsets scrollPadding = const EdgeInsets.all(20.0),
  bool enableInteractiveSelection = true,
  InputCounterWidgetBuilder? buildCounter,
  ScrollPhysics? scrollPhysics,
  Iterable<String>? autofillHints,
  AutovalidateMode? autovalidateMode,
  Widget? input_icon,
  String input_labelText = '',
  String? input_helperText,
  int? input_helperMaxLines,
  String? input_hintText,
  int? input_hintMaxLines,
  String? input_errorText,
  int? input_errorMaxLines,
  FloatingLabelBehavior input_floatingLabelBehavior =
      FloatingLabelBehavior.auto,
  bool input_isCollapsed = false,
  bool? input_isDense,
  EdgeInsetsGeometry? input_contentPadding,
  Widget? input_prefixIcon,
  BoxConstraints? input_prefixIconConstraints,
  Widget? input_prefix,
  String? input_prefixText,
  Widget? input_suffixIcon,
  Widget? input_suffix,
  String? input_suffixText,
  BoxConstraints? input_suffixIconConstraints,
  Widget? input_counter,
  String? input_counterText,
  bool? input_filled,
  Color? input_fillColor,
  Color? input_focusColor,
  Color? input_hoverColor,
  InputBorder? input_errorBorder,
  InputBorder? input_focusedBorder,
  InputBorder? input_focusedErrorBorder,
  InputBorder? input_disabledBorder,
  InputBorder? input_enabledBorder,
  InputBorder? input_border,
  bool input_decorationEnabled = true,
  String? input_semanticCounterText,
  bool? input_alignLabelWithHint,
  Color? base_color,
  Color? base_backgroundColor,
  double? base_fontSize,
  FontWeight? base_fontWeight,
  FontStyle? base_fontStyle,
  double? base_letterSpacing,
  double? base_wordSpacing,
  double? base_height,
  Paint? base_foreground,
  Paint? base_background,
  List<Shadow>? base_shadows,
  List<FontFeature>? base_fontFeatures,
  TextDecoration? base_textDecoration,
  Color? base_textDecorationColor,
  double? base_textDecorationThickness,
  String? base_fontFamily,
  List<String>? base_fontFamilyFallback,
  TextBaseline? base_textBaseline,
  Color? label_color,
  Color? label_backgroundColor,
  double? label_fontSize,
  FontWeight? label_fontWeight,
  FontStyle? label_fontStyle,
  double? label_letterSpacing,
  double? label_wordSpacing,
  double? label_height,
  Paint? label_foreground,
  Paint? label_background,
  List<Shadow>? label_shadows,
  List<FontFeature>? label_fontFeatures,
  TextDecoration? label_textDecoration,
  Color? label_textDecorationColor,
  double? label_textDecorationThickness,
  String? label_fontFamily,
  List<String>? label_fontFamilyFallback,
  TextBaseline? label_textBaseline,
  Color? hint_color,
  Color? hint_backgroundColor,
  double? hint_fontSize,
  FontWeight? hint_fontWeight,
  FontStyle? hint_fontStyle,
  double? hint_letterSpacing,
  double? hint_wordSpacing,
  double? hint_height,
  Paint? hint_foreground,
  Paint? hint_background,
  List<Shadow>? hint_shadows,
  List<FontFeature>? hint_fontFeatures,
  TextDecoration? hint_textDecoration,
  Color? hint_textDecorationColor,
  double? hint_textDecorationThickness,
  String? hint_fontFamily,
  List<String>? hint_fontFamilyFallback,
  TextBaseline? hint_textBaseline,
  Color? helper_color,
  Color? helper_backgroundColor,
  double? helper_fontSize,
  FontWeight? helper_fontWeight,
  FontStyle? helper_fontStyle,
  double? helper_letterSpacing,
  double? helper_wordSpacing,
  double? helper_height,
  Paint? helper_foreground,
  Paint? helper_background,
  List<Shadow>? helper_shadows,
  List<FontFeature>? helper_fontFeatures,
  TextDecoration? helper_textDecoration,
  Color? helper_textDecorationColor,
  double? helper_textDecorationThickness,
  String? helper_fontFamily,
  List<String>? helper_fontFamilyFallback,
  TextBaseline? helper_textBaseline,
  Color? error_color,
  Color? error_backgroundColor,
  double? error_fontSize,
  FontWeight? error_fontWeight,
  FontStyle? error_fontStyle,
  double? error_letterSpacing,
  double? error_wordSpacing,
  double? error_height,
  Paint? error_foreground,
  Paint? error_background,
  List<Shadow>? error_shadows,
  List<FontFeature>? error_fontFeatures,
  TextDecoration? error_textDecoration,
  Color? error_textDecorationColor,
  double? error_textDecorationThickness,
  String? error_fontFamily,
  List<String>? error_fontFamilyFallback,
  TextBaseline? error_textBaseline,
  Color? prefix_color,
  Color? prefix_backgroundColor,
  double? prefix_fontSize,
  FontWeight? prefix_fontWeight,
  FontStyle? prefix_fontStyle,
  double? prefix_letterSpacing,
  double? prefix_wordSpacing,
  double? prefix_height,
  Paint? prefix_foreground,
  Paint? prefix_background,
  List<Shadow>? prefix_shadows,
  List<FontFeature>? prefix_fontFeatures,
  TextDecoration? prefix_textDecoration,
  Color? prefix_textDecorationColor,
  double? prefix_textDecorationThickness,
  String? prefix_fontFamily,
  List<String>? prefix_fontFamilyFallback,
  TextBaseline? prefix_textBaseline,
  Color? suffix_color,
  Color? suffix_backgroundColor,
  double? suffix_fontSize,
  FontWeight? suffix_fontWeight,
  FontStyle? suffix_fontStyle,
  double? suffix_letterSpacing,
  double? suffix_wordSpacing,
  double? suffix_height,
  Paint? suffix_foreground,
  Paint? suffix_background,
  List<Shadow>? suffix_shadows,
  List<FontFeature>? suffix_fontFeatures,
  TextDecoration? suffix_textDecoration,
  Color? suffix_textDecorationColor,
  double? suffix_textDecorationThickness,
  String? suffix_fontFamily,
  List<String>? suffix_fontFamilyFallback,
  TextBaseline? suffix_textBaseline,
  Color? counter_color,
  Color? counter_backgroundColor,
  double? counter_fontSize,
  FontWeight? counter_fontWeight,
  FontStyle? counter_fontStyle,
  double? counter_letterSpacing,
  double? counter_wordSpacing,
  double? counter_height,
  Paint? counter_foreground,
  Paint? counter_background,
  List<Shadow>? counter_shadows,
  List<FontFeature>? counter_fontFeatures,
  TextDecoration? counter_textDecoration,
  Color? counter_textDecorationColor,
  double? counter_textDecorationThickness,
  String? counter_fontFamily,
  List<String>? counter_fontFamilyFallback,
  TextBaseline? counter_textBaseline,
  double mt = 0,
  double ml = 0,
  double mb = 0,
  double mr = 0,
}) {
  _controller = controller;
  _initialValue = initialValue;
  _focusNode = focusNode;
  _keyboardType = keyboardType;
  _textCapitalization = textCapitalization;
  _textInputAction = textInputAction;
  _textDirection = textDirection;
  _textAlign = textAlign;
  _textAlignVertical = textAlignVertical;
  _autofocus = autofocus;
  _readOnly = readOnly;
  _toolbarOptions = toolbarOptions;
  _showCursor = showCursor;
  _obscuringCharacter = obscuringCharacter;
  _obscureText = obscureText;
  _autocorrect = autocorrect;
  _smartDashesType = smartDashesType;
  _smartQuotesType = smartQuotesType;
  _enableSuggestions = enableSuggestions;
  _maxLines = maxLines;
  _minLines = minLines;
  _expands = expands;
  _maxLength = maxLength;
  _onChanged = onChanged;
  _onTap = onTap;
  _onEditingComplete = onEditingComplete;
  _onFieldSubmitted = onFieldSubmitted;
  _onSaved = onSaved;
  _validator = validator;
  _inputFormatters = inputFormatters;
  _enabled = enabled;
  _cursorWidth = cursorWidth;
  _cursorHeight = cursorHeight;
  _cursorRadius = cursorRadius;
  _cursorColor = cursorColor;
  _keyboardAppearance = keyboardAppearance;
  _scrollPadding = scrollPadding;
  _enableInteractiveSelection = enableInteractiveSelection;
  _buildCounter = buildCounter;
  _scrollPhysics = scrollPhysics;
  _autofillHints = autofillHints;
  _autovalidateMode = autovalidateMode;
  _input_icon = input_icon;
  // _input_labelText = input_labelText;
  _input_helperText = input_helperText;
  _input_helperMaxLines = input_helperMaxLines;
  _input_hintText = input_hintText;
  _input_hintMaxLines = input_hintMaxLines;
  _input_errorText = input_errorText;
  _input_errorMaxLines = input_errorMaxLines;
  _input_floatingLabelBehavior = input_floatingLabelBehavior;
  _input_isCollapsed = input_isCollapsed;
  _input_isDense = input_isDense;
  _input_contentPadding = input_contentPadding;
  _input_prefixIcon = input_prefixIcon;
  _input_prefixIconConstraints = input_prefixIconConstraints;
  _input_prefix = input_prefix;
  _input_prefixText = input_prefixText;
  _input_suffixIcon = input_suffixIcon;
  _input_suffix = input_suffix;
  _input_suffixText = input_suffixText;
  _input_suffixIconConstraints = input_suffixIconConstraints;
  _input_counter = input_counter;
  _input_counterText = input_counterText;
  _input_filled = input_filled;
  _input_fillColor = input_fillColor;
  _input_focusColor = input_focusColor;
  _input_hoverColor = input_hoverColor;
  _input_errorBorder = input_errorBorder;
  _input_focusedBorder = input_focusedBorder;
  _input_focusedErrorBorder = input_focusedErrorBorder;
  _input_disabledBorder = input_disabledBorder;
  _input_enabledBorder = input_enabledBorder;
  _input_border = input_border;
  _input_decorationEnabled = input_decorationEnabled;
  _input_semanticCounterText = input_semanticCounterText;
  _input_alignLabelWithHint = input_alignLabelWithHint;
  _base_color = base_color;
  _base_backgroundColor = base_backgroundColor;
  _base_fontSize = base_fontSize;
  _base_fontWeight = base_fontWeight;
  _base_fontStyle = base_fontStyle;
  _base_letterSpacing = base_letterSpacing;
  _base_wordSpacing = base_wordSpacing;
  _base_height = base_height;
  _base_foreground = base_foreground;
  _base_background = base_background;
  _base_shadows = base_shadows;
  _base_fontFeatures = base_fontFeatures;
  _base_textDecoration = base_textDecoration;
  _base_textDecorationColor = base_textDecorationColor;
  _base_textDecorationThickness = base_textDecorationThickness;
  _base_fontFamily = base_fontFamily;
  _base_fontFamilyFallback = base_fontFamilyFallback;
  _base_textBaseline = base_textBaseline;
  _label_color = label_color;
  _label_backgroundColor = label_backgroundColor;
  _label_fontSize = label_fontSize;
  _label_fontWeight = label_fontWeight;
  _label_fontStyle = label_fontStyle;
  _label_letterSpacing = label_letterSpacing;
  _label_wordSpacing = label_wordSpacing;
  _label_height = label_height;
  _label_foreground = label_foreground;
  _label_background = label_background;
  _label_shadows = label_shadows;
  _label_fontFeatures = label_fontFeatures;
  _label_textDecoration = label_textDecoration;
  _label_textDecorationColor = label_textDecorationColor;
  _label_textDecorationThickness = label_textDecorationThickness;
  _label_fontFamily = label_fontFamily;
  _label_fontFamilyFallback = label_fontFamilyFallback;
  _label_textBaseline = label_textBaseline;
  _hint_color = hint_color;
  _hint_backgroundColor = hint_backgroundColor;
  _hint_fontSize = hint_fontSize;
  _hint_fontWeight = hint_fontWeight;
  _hint_fontStyle = hint_fontStyle;
  _hint_letterSpacing = hint_letterSpacing;
  _hint_wordSpacing = hint_wordSpacing;
  _hint_height = hint_height;
  _hint_foreground = hint_foreground;
  _hint_background = hint_background;
  _hint_shadows = hint_shadows;
  _hint_fontFeatures = hint_fontFeatures;
  _hint_textDecoration = hint_textDecoration;
  _hint_textDecorationColor = hint_textDecorationColor;
  _hint_textDecorationThickness = hint_textDecorationThickness;
  _hint_fontFamily = hint_fontFamily;
  _hint_fontFamilyFallback = hint_fontFamilyFallback;
  _hint_textBaseline = hint_textBaseline;
  _helper_color = helper_color;
  _helper_backgroundColor = helper_backgroundColor;
  _helper_fontSize = helper_fontSize;
  _helper_fontWeight = helper_fontWeight;
  _helper_fontStyle = helper_fontStyle;
  _helper_letterSpacing = helper_letterSpacing;
  _helper_wordSpacing = helper_wordSpacing;
  _helper_height = helper_height;
  _helper_foreground = helper_foreground;
  _helper_background = helper_background;
  _helper_shadows = helper_shadows;
  _helper_fontFeatures = helper_fontFeatures;
  _helper_textDecoration = helper_textDecoration;
  _helper_textDecorationColor = helper_textDecorationColor;
  _helper_textDecorationThickness = helper_textDecorationThickness;
  _helper_fontFamily = helper_fontFamily;
  _helper_fontFamilyFallback = helper_fontFamilyFallback;
  _helper_textBaseline = helper_textBaseline;
  _error_color = error_color;
  _error_backgroundColor = error_backgroundColor;
  _error_fontSize = error_fontSize;
  _error_fontWeight = error_fontWeight;
  _error_fontStyle = error_fontStyle;
  _error_letterSpacing = error_letterSpacing;
  _error_wordSpacing = error_wordSpacing;
  _error_height = error_height;
  _error_foreground = error_foreground;
  _error_background = error_background;
  _error_shadows = error_shadows;
  _error_fontFeatures = error_fontFeatures;
  _error_textDecoration = error_textDecoration;
  _error_textDecorationColor = error_textDecorationColor;
  _error_textDecorationThickness = error_textDecorationThickness;
  _error_fontFamily = error_fontFamily;
  _error_fontFamilyFallback = error_fontFamilyFallback;
  _error_textBaseline = error_textBaseline;
  _prefix_color = prefix_color;
  _prefix_backgroundColor = prefix_backgroundColor;
  _prefix_fontSize = prefix_fontSize;
  _prefix_fontWeight = prefix_fontWeight;
  _prefix_fontStyle = prefix_fontStyle;
  _prefix_letterSpacing = prefix_letterSpacing;
  _prefix_wordSpacing = prefix_wordSpacing;
  _prefix_height = prefix_height;
  _prefix_foreground = prefix_foreground;
  _prefix_background = prefix_background;
  _prefix_shadows = prefix_shadows;
  _prefix_fontFeatures = prefix_fontFeatures;
  _prefix_textDecoration = prefix_textDecoration;
  _prefix_textDecorationColor = prefix_textDecorationColor;
  _prefix_textDecorationThickness = prefix_textDecorationThickness;
  _prefix_fontFamily = prefix_fontFamily;
  _prefix_fontFamilyFallback = prefix_fontFamilyFallback;
  _prefix_textBaseline = prefix_textBaseline;
  _suffix_color = suffix_color;
  _suffix_backgroundColor = suffix_backgroundColor;
  _suffix_fontSize = suffix_fontSize;
  _suffix_fontWeight = suffix_fontWeight;
  _suffix_fontStyle = suffix_fontStyle;
  _suffix_letterSpacing = suffix_letterSpacing;
  _suffix_wordSpacing = suffix_wordSpacing;
  _suffix_height = suffix_height;
  _suffix_foreground = suffix_foreground;
  _suffix_background = suffix_background;
  _suffix_shadows = suffix_shadows;
  _suffix_fontFeatures = suffix_fontFeatures;
  _suffix_textDecoration = suffix_textDecoration;
  _suffix_textDecorationColor = suffix_textDecorationColor;
  _suffix_textDecorationThickness = suffix_textDecorationThickness;
  _suffix_fontFamily = suffix_fontFamily;
  _suffix_fontFamilyFallback = suffix_fontFamilyFallback;
  _suffix_textBaseline = suffix_textBaseline;
  _counter_color = counter_color;
  _counter_backgroundColor = counter_backgroundColor;
  _counter_fontSize = counter_fontSize;
  _counter_fontWeight = counter_fontWeight;
  _counter_fontStyle = counter_fontStyle;
  _counter_letterSpacing = counter_letterSpacing;
  _counter_wordSpacing = counter_wordSpacing;
  _counter_height = counter_height;
  _counter_foreground = counter_foreground;
  _counter_background = counter_background;
  _counter_shadows = counter_shadows;
  _counter_fontFeatures = counter_fontFeatures;
  _counter_textDecoration = counter_textDecoration;
  _counter_textDecorationColor = counter_textDecorationColor;
  _counter_textDecorationThickness = counter_textDecorationThickness;
  _counter_fontFamily = counter_fontFamily;
  _counter_fontFamilyFallback = counter_fontFamilyFallback;
  _counter_textBaseline = counter_textBaseline;

  super.mt(mt);
  super.ml(ml);
  super.mb(mb);
  super.mr(mr);

  return this;
}