FFGenUIBackendConfig constructor

FFGenUIBackendConfig({
  1. FFGenUIBackendType? type,
})

Implementation

factory FFGenUIBackendConfig({
  FFGenUIBackendType? type,
}) {
  final result = create();
  if (type != null) result.type = type;
  return result;
}