Last updated:
0 purchases
humaniza
Humaniza #
A package to quickly humanize data
Humanize month #
Takes an integer and the selected language as input and returns the name of the corresponding month.
Supports both English and EspaƱol
import 'package:humanizer/humanizer.dart';
import 'package:translatable_text_field/translatable_text.dart';
void main() {
String humanizedMonth = humanizeMonth(
language: Languages.english,
month: 5,
);
print(humanizedMonth);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.