Draft.pink constructor

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

Implementation

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