fromJson static method

  1. @visibleForTesting
MatchFacesConfig? fromJson(
  1. dynamic jsonObject
)

Implementation

@visibleForTesting
static MatchFacesConfig? fromJson(jsonObject) {
  if (jsonObject == null) return null;
  var result = MatchFacesConfig();

  result.processingMode =
      ProcessingMode.getByValue(jsonObject["processingMode"])!;

  return result;
}