mount method
Implementation
@override
ApiClient mount(String prefix, [ApiCodec? codec]) {
return HttpApiClient(
domain: domain,
path:
'${path.endsWith('/') ? path : '$path/'}${HttpApiRequest.segment(prefix)}',
providers: providers,
codec: codec ?? this.codec,
);
}