darkModeBorder method

Border darkModeBorder()

Implementation

Border darkModeBorder() {
  return accessibility.accessFeatures.highContrast == true
      ? Border.all(color: melt(), width: 2)
      : Border.all(color: white().withOpacity(0.25), width: 1);
}