We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3376417 commit 4c0c398Copy full SHA for 4c0c398
packages/connectivity_plus/tizen/src/connectivity_plus_tizen_plugin.cc
@@ -120,10 +120,10 @@ class ConnectivityPlusTizenPlugin : public flutter::Plugin {
120
Connection connection;
121
ConnectionType type = connection.GetType();
122
if (type != ConnectionType::kError) {
123
- flutter::EncodableList encodedList;
124
- encodedList.push_back(
+ flutter::EncodableList encoded_list;
+ encoded_list.push_back(
125
flutter::EncodableValue(ConnectionTypeToString(type)));
126
- result->Success(flutter::EncodableValue(encodedList));
+ result->Success(flutter::EncodableValue(encoded_list));
127
} else {
128
result->Error(std::to_string(connection.GetLastError()),
129
connection.GetLastErrorString());
0 commit comments