humaniza 1.0.0+1 humaniza: ^1.0.0+1 copied to clipboard
A package to quickly humanize data
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);
}