localeUrl method

Uri localeUrl(
  1. String space,
  2. String project,
  3. String locale, [
  4. int? timestamp,
])

Implementation

Uri localeUrl(String space, String project, String locale,
        [int? timestamp]) =>
    Uri.parse('$url/$space/$project/locale/$locale' +
        (timestamp == null ? '' : '?timestamp=$timestamp'));