mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
9 lines
138 B
Dart
9 lines
138 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class L10n {
|
|
static final all = [
|
|
const Locale('en'),
|
|
const Locale('bn', 'BD'),
|
|
];
|
|
}
|