TypeSafeRoute constructor
TypeSafeRoute({})
Implementation
TypeSafeRoute({
this.extra,
required this.name,
required this.path,
JsonMap? extraParams,
Map<String, String>? pathParameters,
JsonMap? queryParameters,
}) {
this.pathParameters = pathParameters ?? {};
this.queryParameters = queryParameters ?? {};
if (extraParams != null) {
extra = extraParams;
}
}