mirror of
https://github.com/krawieck/lemmur/
synced 2024-12-18 11:28:45 +01:00
16 lines
432 B
Dart
16 lines
432 B
Dart
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'captcha.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
Captcha _$CaptchaFromJson(Map<String, dynamic> json) {
|
||
|
return Captcha(
|
||
|
png: json['png'] as String,
|
||
|
wav: json['wav'] as String,
|
||
|
uuid: json['uuid'] as String,
|
||
|
);
|
||
|
}
|