formatsList static method

Future<Map<String, dynamic>> formatsList(
  1. String country_code
)

Get phone and zip formats list by country ISO code

@param country_code @return

Implementation

///
	/// @param country_code
	/// @return
	static Future<Map<String, dynamic>> formatsList(String country_code) async {
		await _checkRepository();

  if (!_formatsRepository.containsKey(country_code)) {
    return {};
  }

		return _formatsRepository[country_code];
	}