Skip to content

Instantly share code, notes, and snippets.

View OwlCodR's full-sized avatar
:atom:
Making an exciting project...

Max OwlCodR

:atom:
Making an exciting project...
View GitHub Profile
@OwlCodR
OwlCodR / uuid.dart
Last active January 3, 2024 23:59
Simple way to generate uuid v4 with seed in Flutter via Dart
import 'package:uuid/uuid.dart';
import 'package:uuid/uuid_util.dart';
String getUuid(int seed) {
return Uuid().v4(
options: {
'rng': UuidUtil.mathRNG,
'namedArgs': {
#seed: seed,
},