class BoardStrings { BoardStrings._(); static const String boardTitle = 'My Board'; static const String emptyListText = 'No tasks found'; static const String deadlineLabel = 'Deadline'; static const String moveFailed = 'Could not move card'; static String cardMovedMessage(String fromColumn, String toColumn) => 'Card moved from $fromColumn to $toColumn'; }