Draft.blue constructor

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

Implementation

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