[Flutter]Positional Arguments Must Occur Before Named Arguments &Too many positional arguments: 2 allowed, but 3 found.

2022년 08월 21일 by 진아사랑해

    [Flutter]Positional Arguments Must Occur Before Named Arguments &Too many positional arguments: 2 allowed, but 3 found. 목차
반응형

위 함수를 살행하니 "Too many positional arguments: 2 allowed, but 3 found." 에러가 발생하였습니다.

호출된 함수를 찾아보니

처음에 2개는 기본 입력 변수라서 문제가 없지만 3번쨰와 4번째는 선택적 입력변수이었습니다.

이 에러를 해결하려면

입력 변수중에 어느 것인지 명시를 하여 주면 됩니다.

 

즐거운 시간되시기 바랍니다.

반응형