Draft.brown constructor

Draft.brown({
  1. String text = 'brown',
  2. Key? key,
})

Implementation

factory Draft.brown({String text = 'brown', Key? key}) {
  return Draft(
      text: text,
      color: Colors.brown[300]!,
      borderColor: Colors.brown[700]!,
      key: key);
}