show method
Implementation
Future<T> show(String path) async {
RequestEntity request = await createRequest();
var resultJson = await post(path, request) as Map<String, dynamic>;
return ServiceConfig.shared.decoder.fromJsonAsT<T>(resultJson);
}