Skip to content

Instantly share code, notes, and snippets.

final EzSchema userProfileSchema = EzSchema.shape({
"firstName": EzValidator<String>().required(),
"lastName": EzValidator<String>().required(),
"email": EzValidator<String>().required().email(),
"age": EzValidator<int>().min(18).max(100),
'contactDetails': EzSchema.shape({
'mobile': EzValidator<String>()
.required()
.matches(RegExp(r'^\+\d{10,15}$'), 'Invalid phone number'),
'landline': EzValidator<String?>(optional: true),
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Reflection;
using Newtonsoft.Json;
This file has been truncated, but you can view the full file.
[19:56:35] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[19:56:35] [main/INFO] [FML/]: Forge Mod Loader version 7.10.85.1272 for Minecraft 1.7.10 loading
[19:56:35] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_25, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre1.8.0_25
[19:56:35] [main/DEBUG] [FML/]: Java classpath at launch is ;D:\FTB\libraries\net\minecraftforge\forge\1.7.10-10.13.2.1272\forge-1.7.10-10.13.2.1272-universal.jar;D:\FTB\libraries\net\minecraft\launchwrapper\1.11\launchwrapper-1.11.jar;D:\FTB\libraries\org\ow2\asm\asm-all\5.0.3\asm-all-5.0.3.jar;D:\FTB\libraries\com\typesafe\akka\akka-actor_2.11\2.3.3\akka-actor_2.11-2.3.3.jar;D:\FTB\libraries\com\typesafe\config\1.2.1\config-1.2.1.jar;D:\FTB\libraries\org\scala-lang\scala-actors-migration_2.11\1.1.0\scala-actors-migration_2.11-1.1.0.jar;D:\FTB\libraries\org\scala-lang\scala-compiler\2.11.1\scala-compiler-2.11.1.jar;D:\FTB\libraries\org\scala-lang\plugins\scala-c