본문 바로가기
Flutter/Flutter FAQ

Flutter 리스트에서 특정 항목을 제거하는 방법은 무엇인가요?, How to remove specific items from a list?

by 베타코드 2023. 8. 14.
반응형

질문


List<ReplyTile>에서 id = 001인 항목을 제거하는 방법은 무엇인가요?

final List<ReplyTile> _replytile = <ReplyTile>[];

_replytile.add(
    ReplyTile(
        member_photo: 'photo',
        member_id: '001',
        date: '01-01-2018',
        member_name: 'Denis',
        id: '001',
        text: 'hallo..'
    )
);

답변


removeWhere는 이를 수행할 수 있습니다:

replytile.removeWhere((item) => item.id == '001')

또한 List Dartdoc도 참조하세요.

반응형

댓글