mn_utility

This library contains utility functions for dart lanugage.

Will add as more as possible

Example

  String mailId = "mail@gmail.com";
  if(mailId.isValidEmail()) {
      // handle valid email flow
  } else {
      // handle invalid email flow
  }

  String mobileNumber = "9807865432";
  if(mobileNumber.isValidMobileNumber()) {
      // handle valid mobile number flow
  } else {
      // handle invalid mobile number flow
  }

Libraries

mn_utility