import 'package:equatable/equatable.dart'; import 'package:flutter/material.dart'; class LanguageEntity extends Equatable { final String? title; final String? code; final Locale? locale; const LanguageEntity({ this.title, this.code, this.locale, }); @override List get props => [ title, code, locale, ]; }