TextSettings constructor

const TextSettings({
  1. TextStyle textStyle = const TextStyle(fontSize: 14, color: Colors.black),
  2. FocusNode? focusNode,
})

Creates a TextSettings with the given textStyle and focusNode.

Implementation

const TextSettings({
  this.textStyle = const TextStyle(
    fontSize: 14,
    color: Colors.black,
  ),
  this.focusNode,
});