mather 1.0.0
mather: ^1.0.0 copied to clipboard
library extention for language dart an base type (List)
example/mather_example.dart
import 'package:mather/mather.dart';
void main() {
List list = [2, 2, true, false, "string", 3, 3, 3];
print(list.count(3)); // find count elem in list output => 3
}