Regex.fromJson constructor

Regex.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Regex.fromJson(Map<String, dynamic> json) {
  return Regex(
    regexString: json['RegexString'] as String?,
  );
}