You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
358 B

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<Object?> get props => [
title,
code,
locale,
];
}