본문 바로가기
공부내용

다트문법_random함수

by 골목코딩 2024. 11. 6.

import 'dart:math';

int i = Random().nextInt(최대값);

 

최대값이 5면 0~4까지만 반환됨.

댓글