Draft.orange constructor

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

Implementation

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