ms_map_utils 0.1.0 copy "ms_map_utils: ^0.1.0" to clipboard
ms_map_utils: ^0.1.0 copied to clipboard

outdated

A dart package that implement a lot of util functions for a Map

example/main.dart

import 'package:ms_map_utils/ms_map_utils.dart';

void main(List<String> args) {
  // Compat a Map
  print({'key1': null, 'key2': 'Non Null Value'}.compact());

  // Trim all strings values
  print({'key1': '    Imagine random string here   '}.trim());

  Map justMap = {
    'key1': null,
    'key2':
        '         just a String withs extras spaces en start and end            '
  };
  
  // Will remove key1
  // {key2:          just a String withs extras spaces en start and end            }
  print(justMap.compact());
  
  // Will trim value string
  // {key2: just a String withs extras spaces en start and end}
  print(justMap.trim());
}
21
likes
0
pub points
71%
popularity

Publisher

verified publishermarcussoftware.info

A dart package that implement a lot of util functions for a Map

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on ms_map_utils