getPath method

String getPath(
  1. String path
)

Appending the final route path with the given path name.

Implementation

String getPath(String path) =>
    '$finalModuleName${path.contains('/') ? '' : '/'}$path';