extractMethodResponseInnerDataType function
Extracts the type of the 'data' field from a method's response type.
Implementation
Future<Map<String, dynamic>> extractMethodResponseInnerDataType(
String filePath,
String methodName,
) async {
return await extractMethodResponseTypeWithField(
filePath,
methodName,
"data,body",
);
}