flutterClassOfMethod method
Implementation
String flutterClassOfMethod(String method) {
switch (method) {
case 'getSse':
case 'postSse':
case 'putSse':
case 'patchSse':
case 'deleteSse':
return 'Stream';
default:
return 'Future';
}
}