Draft.teal constructor

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

Implementation

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