選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

9 行
113 B

  1. class ItemSelected {
  2. final String? text;
  3. final int? id;
  4. ItemSelected({
  5. this.text,
  6. this.id,
  7. });
  8. }