1
class PubTools {
void update(Context context, {bool force: false}) {
// do something
}
}
是舊代碼。我想將功能名稱update
更改爲upgrade
。爲過時的名稱創建另一個功能
class PubTools { @deprecated void update(Context context, {bool force: false}) { upgrade(context, force); } void upgrade(Context context, {bool force: false}) { // do something } }
但dartanalyzer
返回警告。
像..
[預警] 1個位置參數預期,但2發現(/家/ sungguk/program_store/lib目錄/磨牀 _utils.dart,線130,第8欄)
如何我可以刪除警告嗎?什麼是正確的語法?