parseSmoothSupportedOperations function

SmoothMatrix4OperationType? parseSmoothSupportedOperations(
  1. String? string
)

Implementation

SmoothMatrix4OperationType? parseSmoothSupportedOperations(String? string) {
  SmoothMatrix4OperationType? rst;
  SmoothMatrix4OperationType.values.forEach((element) {
    if (string == element.toJson()) rst = element;
  });
  return rst;
}