UpdateRegexPatternSetResponse.fromJson constructor

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

Implementation

factory UpdateRegexPatternSetResponse.fromJson(Map<String, dynamic> json) {
  return UpdateRegexPatternSetResponse(
    nextLockToken: json['NextLockToken'] as String?,
  );
}